diff options
author | Sam Atkins <atkinssj@serenityos.org> | 2023-03-24 17:40:28 +0000 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2023-03-25 16:56:04 +0000 |
commit | 6cedf5e05b3a36c2678c37f346559f4dbd8a9436 (patch) | |
tree | 209be4b41df8de154c7ae2703a1d0e55dba758a7 /Userland/Libraries/LibWeb/CSS/Parser | |
parent | b1ccd30b02ad9b000d01f3e60a3a64153265d23c (diff) | |
download | serenity-6cedf5e05b3a36c2678c37f346559f4dbd8a9436.zip |
LibWeb: Split ResolutionStyleValue 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 7f716df634..a94a643752 100644 --- a/Userland/Libraries/LibWeb/CSS/Parser/Parser.cpp +++ b/Userland/Libraries/LibWeb/CSS/Parser/Parser.cpp @@ -61,6 +61,7 @@ #include <LibWeb/CSS/StyleValues/PercentageStyleValue.h> #include <LibWeb/CSS/StyleValues/PositionStyleValue.h> #include <LibWeb/CSS/StyleValues/RadialGradientStyleValue.h> +#include <LibWeb/CSS/StyleValues/ResolutionStyleValue.h> #include <LibWeb/DOM/Document.h> #include <LibWeb/Dump.h> #include <LibWeb/Infra/Strings.h> |