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:
parent
225a5f2fe6
commit
e6e00d2a4d
1 changed files with 0 additions and 1 deletions
|
@ -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()) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue