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

LibHTML: Rename "style_properties" to "style" everywhere

This commit is contained in:
Andreas Kling 2019-10-07 09:23:53 +02:00
parent de49714f36
commit 15f3e64862
12 changed files with 53 additions and 53 deletions

View file

@ -69,19 +69,19 @@ bool Element::has_class(const StringView& class_name) const
return false;
}
RefPtr<LayoutNode> Element::create_layout_node(const StyleResolver& resolver, const StyleProperties* parent_properties) const
RefPtr<LayoutNode> Element::create_layout_node(const StyleResolver& resolver, const StyleProperties* parent_style) const
{
auto style_properties = resolver.resolve_style(*this, parent_properties);
auto style = resolver.resolve_style(*this, parent_style);
auto display_property = style_properties->property("display");
auto display_property = style->property("display");
String display = display_property.has_value() ? display_property.release_value()->to_string() : "inline";
if (display == "none")
return nullptr;
if (display == "block" || display == "list-item")
return adopt(*new LayoutBlock(this, move(style_properties)));
return adopt(*new LayoutBlock(this, move(style)));
if (display == "inline")
return adopt(*new LayoutInline(*this, move(style_properties)));
return adopt(*new LayoutInline(*this, move(style)));
ASSERT_NOT_REACHED();
}