LibWeb: Store computed CSS value of background-repeat

This commit is contained in:
Timothy Flynn 2021-04-02 15:41:29 -04:00 committed by Andreas Kling
commit bd5a91269f
Notes: sideshowbarker 2024-07-18 20:53:09 +09:00
7 changed files with 55 additions and 0 deletions

View file

@ -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();