diff options
author | Andreas Kling <kling@serenityos.org> | 2020-12-18 10:25:25 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-12-18 10:25:50 +0100 |
commit | b322452ef4e2e54182aabd3d4d90cf3e113e5bd5 (patch) | |
tree | 2a6af5cb565bc6eeb9836d40eb931beac38ad1ef /Libraries/LibWeb | |
parent | 5a146187cf51f03eae6f5556d4ec5fe5a59e1341 (diff) | |
download | serenity-b322452ef4e2e54182aabd3d4d90cf3e113e5bd5.zip |
LibWeb: Silence BFC spam about not knowing how to place boxes
This gets way too noisy on some pages, and isn't even interesting.
Diffstat (limited to 'Libraries/LibWeb')
-rw-r--r-- | Libraries/LibWeb/Layout/BlockFormattingContext.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Libraries/LibWeb/Layout/BlockFormattingContext.cpp b/Libraries/LibWeb/Layout/BlockFormattingContext.cpp index 03eac50701..245efc6361 100644 --- a/Libraries/LibWeb/Layout/BlockFormattingContext.cpp +++ b/Libraries/LibWeb/Layout/BlockFormattingContext.cpp @@ -475,8 +475,6 @@ void BlockFormattingContext::layout_block_level_children(Box& box, LayoutMode la place_block_level_replaced_element_in_normal_flow(child_box, box); else if (child_box.is_block()) place_block_level_non_replaced_element_in_normal_flow(child_box, box); - else - dbgln("FIXME: BlockFormattingContext::layout_block_level_children() doesn't know how to place a {}", child_box.class_name()); // FIXME: This should be factored differently. It's uncool that we mutate the tree *during* layout! // Instead, we should generate the marker box during the tree build. |