summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/CSS/StyleValue.h
diff options
context:
space:
mode:
authorTimothy Flynn <trflynn89@pm.me>2021-04-02 15:41:29 -0400
committerAndreas Kling <kling@serenityos.org>2021-04-03 11:24:33 +0200
commitbd5a91269f27ae1d8aac0027b57d9f2426bec5f4 (patch)
tree1e87887af0e86e52f0875de70397aadf884a2e54 /Userland/Libraries/LibWeb/CSS/StyleValue.h
parentfcfeadaffa72c00d7e8b634af4ee49df17455555 (diff)
downloadserenity-bd5a91269f27ae1d8aac0027b57d9f2426bec5f4.zip
LibWeb: Store computed CSS value of background-repeat
Diffstat (limited to 'Userland/Libraries/LibWeb/CSS/StyleValue.h')
-rw-r--r--Userland/Libraries/LibWeb/CSS/StyleValue.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/CSS/StyleValue.h b/Userland/Libraries/LibWeb/CSS/StyleValue.h
index 7bacdcb810..aa8997786c 100644
--- a/Userland/Libraries/LibWeb/CSS/StyleValue.h
+++ b/Userland/Libraries/LibWeb/CSS/StyleValue.h
@@ -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();