mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 08:36:15 +00:00
LibWeb: Rename LayoutNode::style() => specified_style()
Let's make way for a slightly-more-cooked style() that will eventually replace the raw specified_style() for layout and paint purposes.
This commit is contained in:
@@ -47,7 +47,7 @@ void LayoutListItem::layout(LayoutMode layout_mode)
|
||||
|
||||
LayoutBlock::layout(layout_mode);
|
||||
|
||||
if (style().string_or_fallback(CSS::PropertyID::ListStyleType, "disc") == "none") {
|
||||
if (specified_style().string_or_fallback(CSS::PropertyID::ListStyleType, "disc") == "none") {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user