From e6e00d2a4d5314045c752f34c436b76205e34f9f Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Mon, 18 Oct 2021 11:24:53 +0200 Subject: [PATCH] LibWeb: Remove already-fixed FIXME in creates_block_formatting_context() We're already creating a BFC for children of inline-flex boxes. --- Userland/Libraries/LibWeb/Layout/FormattingContext.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Userland/Libraries/LibWeb/Layout/FormattingContext.cpp b/Userland/Libraries/LibWeb/Layout/FormattingContext.cpp index 05b438af5f..c11c5bb1ca 100644 --- a/Userland/Libraries/LibWeb/Layout/FormattingContext.cpp +++ b/Userland/Libraries/LibWeb/Layout/FormattingContext.cpp @@ -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()) {