summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2022-02-11 15:21:56 +0100
committerAndreas Kling <kling@serenityos.org>2022-02-11 15:21:56 +0100
commit1667a80ade44d1751d3c4e664c9aab825848465e (patch)
treebcebf16cd0d82a5c19ca0012470e38956b6ed87c /Userland/Libraries/LibWeb
parentc797eaa9f818a36b57add06497ff465b1263708c (diff)
downloadserenity-1667a80ade44d1751d3c4e664c9aab825848465e.zip
LibWeb: Remove CascadeOrigin::Any enum value
Looks like I removed all uses of this value, but not the value itself! Thanks to Idan for pointing that out. :^)
Diffstat (limited to 'Userland/Libraries/LibWeb')
-rw-r--r--Userland/Libraries/LibWeb/CSS/StyleComputer.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/CSS/StyleComputer.h b/Userland/Libraries/LibWeb/CSS/StyleComputer.h
index f0524093f1..ac99e63bdb 100644
--- a/Userland/Libraries/LibWeb/CSS/StyleComputer.h
+++ b/Userland/Libraries/LibWeb/CSS/StyleComputer.h
@@ -56,7 +56,6 @@ public:
// https://www.w3.org/TR/css-cascade/#origin
enum class CascadeOrigin {
- Any, // FIXME: This is not part of the spec. Get rid of it.
Author,
User,
UserAgent,