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
commit e6e00d2a4d
Notes: sideshowbarker 2024-07-18 02:09:35 +09:00

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()) {