diff options
author | Sam Atkins <atkinssj@serenityos.org> | 2023-03-23 17:26:13 +0000 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2023-03-25 16:56:04 +0000 |
commit | 777d3e73f9f22c66aed6f631958926fb95e877c8 (patch) | |
tree | d29c694b23bf47d0119590e4b7e035bcb549384c /Userland/Libraries/LibWeb/CSS/Parser | |
parent | 36c5afdfb2206a16745ac0ed731ce66a01a5ed02 (diff) | |
download | serenity-777d3e73f9f22c66aed6f631958926fb95e877c8.zip |
LibWeb: Split AngleStyleValue 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 7d06acbbe8..7362278f3d 100644 --- a/Userland/Libraries/LibWeb/CSS/Parser/Parser.cpp +++ b/Userland/Libraries/LibWeb/CSS/Parser/Parser.cpp @@ -29,6 +29,7 @@ #include <LibWeb/CSS/Parser/Rule.h> #include <LibWeb/CSS/Selector.h> #include <LibWeb/CSS/StyleValue.h> +#include <LibWeb/CSS/StyleValues/AngleStyleValue.h> #include <LibWeb/DOM/Document.h> #include <LibWeb/Dump.h> #include <LibWeb/Infra/Strings.h> |