diff options
author | Sam Atkins <atkinssj@serenityos.org> | 2023-03-24 15:17:11 +0000 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2023-03-25 16:56:04 +0000 |
commit | 35b240c87d6d83ed0978103c5cec4f5b6124249a (patch) | |
tree | 953d17bba50e8401af300a3b160f5b0d91087e21 /Userland/Libraries/LibWeb/HTML | |
parent | 76de017a513bfd0eafe88d487240e8b69b6610f5 (diff) | |
download | serenity-35b240c87d6d83ed0978103c5cec4f5b6124249a.zip |
LibWeb: Split ImageStyleValue out of StyleValue.{h,cpp}
Diffstat (limited to 'Userland/Libraries/LibWeb/HTML')
-rw-r--r-- | Userland/Libraries/LibWeb/HTML/HTMLBodyElement.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/HTMLBodyElement.cpp b/Userland/Libraries/LibWeb/HTML/HTMLBodyElement.cpp index 0a0be578f1..d2ef464426 100644 --- a/Userland/Libraries/LibWeb/HTML/HTMLBodyElement.cpp +++ b/Userland/Libraries/LibWeb/HTML/HTMLBodyElement.cpp @@ -7,6 +7,7 @@ #include <LibWeb/CSS/StyleProperties.h> #include <LibWeb/CSS/StyleValue.h> #include <LibWeb/CSS/StyleValues/ColorStyleValue.h> +#include <LibWeb/CSS/StyleValues/ImageStyleValue.h> #include <LibWeb/DOM/Document.h> #include <LibWeb/HTML/HTMLBodyElement.h> #include <LibWeb/HTML/Window.h> |