summaryrefslogtreecommitdiff
path: root/Libraries/LibWeb/Layout
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-05-30 18:17:29 +0200
committerAndreas Kling <kling@serenityos.org>2020-05-30 18:26:44 +0200
commite5ec05bd3aebd8a1b35f5961925d97f528031ef1 (patch)
tree310ef0f2215659a620e9409da3b086cd484f1276 /Libraries/LibWeb/Layout
parent5818ef2c80e35cbc81eeb4a43f18e8d92ab92f70 (diff)
downloadserenity-e5ec05bd3aebd8a1b35f5961925d97f528031ef1.zip
LibWeb: Correctly determine whether a block has only inline children
There's more to life than inline-vs-block, so we have to take all the non-block non-inline display types into account when computing whether a block should say children_are_inline() == true.
Diffstat (limited to 'Libraries/LibWeb/Layout')
-rw-r--r--Libraries/LibWeb/Layout/LayoutTreeBuilder.cpp14
1 files changed, 5 insertions, 9 deletions
diff --git a/Libraries/LibWeb/Layout/LayoutTreeBuilder.cpp b/Libraries/LibWeb/Layout/LayoutTreeBuilder.cpp
index 12beeb796c..d266a4f61e 100644
--- a/Libraries/LibWeb/Layout/LayoutTreeBuilder.cpp
+++ b/Libraries/LibWeb/Layout/LayoutTreeBuilder.cpp
@@ -48,7 +48,7 @@ static RefPtr<LayoutNode> create_layout_tree(Node& node, const StyleProperties*
NonnullRefPtrVector<LayoutNode> layout_children;
bool have_inline_children = false;
- bool have_block_children = false;
+ bool have_noninline_children = false;
to<ParentNode>(node).for_each_child([&](Node& child) {
auto layout_child = create_layout_tree(child, &layout_node->style());
@@ -56,13 +56,13 @@ static RefPtr<LayoutNode> create_layout_tree(Node& node, const StyleProperties*
return;
if (layout_child->is_inline())
have_inline_children = true;
- if (layout_child->is_block())
- have_block_children = true;
+ else
+ have_noninline_children = true;
layout_children.append(layout_child.release_nonnull());
});
for (auto& layout_child : layout_children) {
- if (have_block_children && have_inline_children && layout_child.is_inline()) {
+ if (have_noninline_children && have_inline_children && layout_child.is_inline()) {
if (is<LayoutText>(layout_child) && to<LayoutText>(layout_child).text_for_style(*parent_style) == " ")
continue;
layout_node->inline_wrapper().append_child(layout_child);
@@ -71,13 +71,9 @@ static RefPtr<LayoutNode> create_layout_tree(Node& node, const StyleProperties*
}
}
- if (have_inline_children && !have_block_children)
+ if (have_inline_children && !have_noninline_children)
layout_node->set_children_are_inline(true);
- // FIXME: This is really hackish. Some layout nodes don't care about inline children.
- if (is<LayoutTable>(layout_node))
- layout_node->set_children_are_inline(false);
-
return layout_node;
}