1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:37:35 +00:00

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.
This commit is contained in:
Andreas Kling 2023-05-06 16:05:50 +02:00
parent ecd3d0935a
commit f09391dd7f

View file

@ -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 {};