summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/CSS/Parser
diff options
context:
space:
mode:
authorSam Atkins <atkinssj@serenityos.org>2023-03-23 21:17:43 +0000
committerLinus Groh <mail@linusgroh.de>2023-03-25 16:56:04 +0000
commit9436b7de83d300c6a3d188158d71938efcdb7169 (patch)
treef23f8aabafd466ac5bccb3f86a0e330880b7e1b3 /Userland/Libraries/LibWeb/CSS/Parser
parent77b282640217021d2c5c786e09ae2c10c51529d2 (diff)
downloadserenity-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.cpp1
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>