Browse Source

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.
Andreas Kling 2 years ago
parent
commit
f09391dd7f
1 changed files with 0 additions and 1 deletions
  1. 0 1
      Userland/Libraries/LibWeb/Layout/FormattingContext.cpp

+ 0 - 1
Userland/Libraries/LibWeb/Layout/FormattingContext.cpp

@@ -149,7 +149,6 @@ Optional<FormattingContext::Type> 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 {};