diff options
author | Sam Atkins <atkinssj@serenityos.org> | 2023-03-24 17:45:25 +0000 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2023-03-25 16:56:04 +0000 |
commit | 08fa5138875899ca809fe8ddd8b6cade9c47e24a (patch) | |
tree | 2c3e15f1d687153739e370b03fd1d0b6cff5cb1d /Userland/Libraries/LibWeb/CSS/Parser | |
parent | 6cedf5e05b3a36c2678c37f346559f4dbd8a9436 (diff) | |
download | serenity-08fa5138875899ca809fe8ddd8b6cade9c47e24a.zip |
LibWeb: Split ShadowStyleValue out of StyleValue.{h,cpp}
Diffstat (limited to 'Userland/Libraries/LibWeb/CSS/Parser')
-rw-r--r-- | Userland/Libraries/LibWeb/CSS/Parser/Parser.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/CSS/Parser/Parser.cpp b/Userland/Libraries/LibWeb/CSS/Parser/Parser.cpp index a94a643752..924e8c374d 100644 --- a/Userland/Libraries/LibWeb/CSS/Parser/Parser.cpp +++ b/Userland/Libraries/LibWeb/CSS/Parser/Parser.cpp @@ -62,6 +62,7 @@ #include <LibWeb/CSS/StyleValues/PositionStyleValue.h> #include <LibWeb/CSS/StyleValues/RadialGradientStyleValue.h> #include <LibWeb/CSS/StyleValues/ResolutionStyleValue.h> +#include <LibWeb/CSS/StyleValues/ShadowStyleValue.h> #include <LibWeb/DOM/Document.h> #include <LibWeb/Dump.h> #include <LibWeb/Infra/Strings.h> |