diff options
author | Sam Atkins <atkinssj@serenityos.org> | 2023-03-23 17:54:05 +0000 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2023-03-25 16:56:04 +0000 |
commit | 9d5296889f2b77da2964575be34f070d1e48ea8c (patch) | |
tree | b90aaf15ed40ee48ac45f8438f5fd63a5ecaea1f /Userland/Libraries/LibWeb/Layout/Node.cpp | |
parent | 52cd0b2f472f7c90b1ca8c65446da3c82bfb3359 (diff) | |
download | serenity-9d5296889f2b77da2964575be34f070d1e48ea8c.zip |
LibWeb: Split BackgroundSizeStyleValue out of StyleValue.{h,cpp}
Diffstat (limited to 'Userland/Libraries/LibWeb/Layout/Node.cpp')
-rw-r--r-- | Userland/Libraries/LibWeb/Layout/Node.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/Layout/Node.cpp b/Userland/Libraries/LibWeb/Layout/Node.cpp index 16978b8243..94ef74876a 100644 --- a/Userland/Libraries/LibWeb/Layout/Node.cpp +++ b/Userland/Libraries/LibWeb/Layout/Node.cpp @@ -6,6 +6,7 @@ #include <AK/Demangle.h> #include <LibWeb/CSS/StyleValues/BackgroundRepeatStyleValue.h> +#include <LibWeb/CSS/StyleValues/BackgroundSizeStyleValue.h> #include <LibWeb/DOM/Document.h> #include <LibWeb/Dump.h> #include <LibWeb/HTML/BrowsingContext.h> |