mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-02 06:09:08 +00:00
LibWeb: Store computed CSS value of background-repeat
This commit is contained in:
parent
fcfeadaffa
commit
bd5a91269f
Notes:
sideshowbarker
2024-07-18 20:53:09 +09:00
Author: https://github.com/trflynn89
Commit: bd5a91269f
Pull-request: https://github.com/SerenityOS/serenity/pull/6083
7 changed files with 55 additions and 0 deletions
|
@ -189,6 +189,15 @@ enum class Overflow : u8 {
|
|||
Visible,
|
||||
};
|
||||
|
||||
enum class Repeat : u8 {
|
||||
NoRepeat,
|
||||
Repeat,
|
||||
RepeatX,
|
||||
RepeatY,
|
||||
Round,
|
||||
Space,
|
||||
};
|
||||
|
||||
class StyleValue : public RefCounted<StyleValue> {
|
||||
public:
|
||||
virtual ~StyleValue();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue