mirror of
https://github.com/RGBCube/serenity
synced 2025-05-16 15:34:58 +00:00
LibHTML: Rename LayoutNode::style_properties() to LayoutNode::style()
This commit is contained in:
parent
9c0e9a1a20
commit
a7ca719c4e
7 changed files with 21 additions and 21 deletions
|
@ -56,7 +56,7 @@ RefPtr<LayoutNode> Node::create_layout_tree(const StyleResolver& resolver, const
|
|||
bool have_block_children = false;
|
||||
|
||||
static_cast<const ParentNode&>(*this).for_each_child([&](const Node& child) {
|
||||
auto layout_child = child.create_layout_tree(resolver, &layout_node->style_properties());
|
||||
auto layout_child = child.create_layout_tree(resolver, &layout_node->style());
|
||||
if (!layout_child)
|
||||
return;
|
||||
if (!layout_child->is_block())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue