summaryrefslogtreecommitdiff
path: root/Userland
diff options
context:
space:
mode:
Diffstat (limited to 'Userland')
-rw-r--r--Userland/Libraries/LibWeb/CSS/StyleValue.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/Userland/Libraries/LibWeb/CSS/StyleValue.h b/Userland/Libraries/LibWeb/CSS/StyleValue.h
index d5aa2ea85a..badf589ffd 100644
--- a/Userland/Libraries/LibWeb/CSS/StyleValue.h
+++ b/Userland/Libraries/LibWeb/CSS/StyleValue.h
@@ -115,7 +115,6 @@ public:
Image,
Inherit,
Initial,
- Invalid,
Length,
LinearGradient,
ListStyle,
@@ -318,7 +317,7 @@ protected:
explicit StyleValue(Type);
private:
- Type m_type { Type::Invalid };
+ Type m_type;
};
template<typename T>