mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 19:57:35 +00:00
LibWeb: Combine background-repeat-x/y pseudo-properties
While right now this doesn't save much complexity, it will do once we care about multiple background layers per node. Then, having a single repeat value per layer will simplify things. It also means we can remove the pseudo-property concept entirely! :^)
This commit is contained in:
parent
5d0acb63ae
commit
1e53768f1b
10 changed files with 52 additions and 105 deletions
|
@ -379,7 +379,7 @@ CSS::Repeat Document::background_repeat_x() const
|
|||
if (!body_layout_node)
|
||||
return CSS::Repeat::Repeat;
|
||||
|
||||
return body_layout_node->computed_values().background_repeat_x();
|
||||
return body_layout_node->computed_values().background_repeat().repeat_x;
|
||||
}
|
||||
|
||||
CSS::Repeat Document::background_repeat_y() const
|
||||
|
@ -392,7 +392,7 @@ CSS::Repeat Document::background_repeat_y() const
|
|||
if (!body_layout_node)
|
||||
return CSS::Repeat::Repeat;
|
||||
|
||||
return body_layout_node->computed_values().background_repeat_y();
|
||||
return body_layout_node->computed_values().background_repeat().repeat_y;
|
||||
}
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/urls-and-fetching.html#parse-a-url
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue