From 1667a80ade44d1751d3c4e664c9aab825848465e Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Fri, 11 Feb 2022 15:21:56 +0100 Subject: [PATCH] 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. :^) --- Userland/Libraries/LibWeb/CSS/StyleComputer.h | 1 - 1 file changed, 1 deletion(-) 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,