mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 02:57:42 +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:
parent
90edaabc4b
commit
5e83a97fa2
17 changed files with 53 additions and 53 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue