diff options
author | Sam Atkins <atkinssj@serenityos.org> | 2023-03-23 20:56:30 +0000 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2023-03-25 16:56:04 +0000 |
commit | 1c03bc7a6fed85ca0b57baa74c920bc4adf3a9c5 (patch) | |
tree | cabd60363366b742265c4f1d8f304d4e6adf4fa4 /Userland/Libraries/LibWeb/CSS/Parser | |
parent | 9d5296889f2b77da2964575be34f070d1e48ea8c (diff) | |
download | serenity-1c03bc7a6fed85ca0b57baa74c920bc4adf3a9c5.zip |
LibWeb: Split BorderStyleValue 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 e0510d7744..a715a5e4d5 100644 --- a/Userland/Libraries/LibWeb/CSS/Parser/Parser.cpp +++ b/Userland/Libraries/LibWeb/CSS/Parser/Parser.cpp @@ -33,6 +33,7 @@ #include <LibWeb/CSS/StyleValues/BackgroundRepeatStyleValue.h> #include <LibWeb/CSS/StyleValues/BackgroundSizeStyleValue.h> #include <LibWeb/CSS/StyleValues/BackgroundStyleValue.h> +#include <LibWeb/CSS/StyleValues/BorderStyleValue.h> #include <LibWeb/DOM/Document.h> #include <LibWeb/Dump.h> #include <LibWeb/Infra/Strings.h> |