From f09391dd7f1448b292ee238f96dd426ca8916a1f Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sat, 6 May 2023 16:05:50 +0200 Subject: [PATCH] LibWeb: Remove debug spam when creating a dummy formatting context This will go away when we get rid of the dummy context. There's no value in spamming the debug console about it. --- Userland/Libraries/LibWeb/Layout/FormattingContext.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Userland/Libraries/LibWeb/Layout/FormattingContext.cpp b/Userland/Libraries/LibWeb/Layout/FormattingContext.cpp index 8529f4ed91..114165ed66 100644 --- a/Userland/Libraries/LibWeb/Layout/FormattingContext.cpp +++ b/Userland/Libraries/LibWeb/Layout/FormattingContext.cpp @@ -149,7 +149,6 @@ Optional FormattingContext::formatting_context_type_cre // HACK: Instead of crashing, create a dummy formatting context that does nothing. // FIXME: Remove this once it's no longer needed. It currently swallows problem with standalone // table-related boxes that don't get fixed up by CSS anonymous table box generation. - dbgln("FIXME: Child box doesn't create BFC, but inside is also not flow! display={}", MUST(display.to_string())); return Type::InternalDummy; } return {};