1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 21:08:12 +00:00

LibWeb: Remove already-fixed FIXME in creates_block_formatting_context()

We're already creating a BFC for children of inline-flex boxes.
This commit is contained in:
Andreas Kling 2021-10-18 11:24:53 +02:00
parent 225a5f2fe6
commit e6e00d2a4d

View file

@ -56,7 +56,6 @@ bool FormattingContext::creates_block_formatting_context(const Box& box)
if (display.is_flow_root_inside())
return true;
// FIXME: inline-flex as well
if (box.parent()) {
auto parent_display = box.parent()->computed_values().display();
if (parent_display.is_flex_inside()) {