diff options
author | Sam Atkins <atkinssj@serenityos.org> | 2023-03-23 21:44:40 +0000 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2023-03-25 16:56:04 +0000 |
commit | 87f920a299ca0fc052f2c4343ab2dbda256a3837 (patch) | |
tree | eb1b87be4f1caa904915b4473f3cb7e9d56d7f97 /Userland/Libraries/LibWeb/CSS/Parser | |
parent | e24679f8701482efe2f3c8cdee7406a8513ebf0f (diff) | |
download | serenity-87f920a299ca0fc052f2c4343ab2dbda256a3837.zip |
LibWeb: Split FontStyleValue 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 2020233021..8ecc6062dc 100644 --- a/Userland/Libraries/LibWeb/CSS/Parser/Parser.cpp +++ b/Userland/Libraries/LibWeb/CSS/Parser/Parser.cpp @@ -41,6 +41,7 @@ #include <LibWeb/CSS/StyleValues/FilterValueListStyleValue.h> #include <LibWeb/CSS/StyleValues/FlexFlowStyleValue.h> #include <LibWeb/CSS/StyleValues/FlexStyleValue.h> +#include <LibWeb/CSS/StyleValues/FontStyleValue.h> #include <LibWeb/DOM/Document.h> #include <LibWeb/Dump.h> #include <LibWeb/Infra/Strings.h> |