diff options
author | Sam Atkins <atkinssj@serenityos.org> | 2023-03-23 21:17:43 +0000 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2023-03-25 16:56:04 +0000 |
commit | 9436b7de83d300c6a3d188158d71938efcdb7169 (patch) | |
tree | f23f8aabafd466ac5bccb3f86a0e330880b7e1b3 /Userland/Libraries/LibWeb/CSS/Parser | |
parent | 77b282640217021d2c5c786e09ae2c10c51529d2 (diff) | |
download | serenity-9436b7de83d300c6a3d188158d71938efcdb7169.zip |
LibWeb: Split ContentStyleValue 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 e5c64e6dbb..84b48ed75b 100644 --- a/Userland/Libraries/LibWeb/CSS/Parser/Parser.cpp +++ b/Userland/Libraries/LibWeb/CSS/Parser/Parser.cpp @@ -37,6 +37,7 @@ #include <LibWeb/CSS/StyleValues/BorderRadiusStyleValue.h> #include <LibWeb/CSS/StyleValues/BorderStyleValue.h> #include <LibWeb/CSS/StyleValues/ColorStyleValue.h> +#include <LibWeb/CSS/StyleValues/ContentStyleValue.h> #include <LibWeb/DOM/Document.h> #include <LibWeb/Dump.h> #include <LibWeb/Infra/Strings.h> |