1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-22 17:15:08 +00:00

LibHTML: Simplify Node::create_layout_node()

There's no need to pass the StyleResolver to this function. Nodes that
need it can just get it from the document.
This commit is contained in:
Andreas Kling 2019-10-15 15:06:16 +02:00
parent f7cd5662ef
commit f4f5ede10a
13 changed files with 20 additions and 30 deletions

View file

@ -10,7 +10,7 @@ LayoutTreeBuilder::LayoutTreeBuilder()
static RefPtr<LayoutNode> create_layout_tree(Node& node, const StyleProperties* parent_style)
{
auto layout_node = node.create_layout_node(node.document().style_resolver(), parent_style);
auto layout_node = node.create_layout_node(parent_style);
if (!layout_node)
return nullptr;