diff options
author | Andreas Kling <kling@serenityos.org> | 2023-05-08 06:37:18 +0200 |
---|---|---|
committer | Jelle Raaijmakers <jelle@gmta.nl> | 2023-05-08 09:29:44 +0200 |
commit | 43616316dee38e7d0a0382ca3ecd481a6b8d3bad (patch) | |
tree | e1efd71eed39c72950387a6c85bb7a3e87e7ef9d /Userland/Services/WebContent | |
parent | 5ba5beb50f972b5817801730b910261023c0cafe (diff) | |
download | serenity-43616316dee38e7d0a0382ca3ecd481a6b8d3bad.zip |
LibWeb: Don't include CSS/StyleComputer.h from Element.h and Document.h
This made editing StyleComputer.h unpleasant for no reason.
Diffstat (limited to 'Userland/Services/WebContent')
-rw-r--r-- | Userland/Services/WebContent/ConnectionFromClient.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Services/WebContent/ConnectionFromClient.cpp b/Userland/Services/WebContent/ConnectionFromClient.cpp index dd23187a42..329d08953f 100644 --- a/Userland/Services/WebContent/ConnectionFromClient.cpp +++ b/Userland/Services/WebContent/ConnectionFromClient.cpp @@ -18,6 +18,7 @@ #include <LibJS/Heap/Heap.h> #include <LibJS/Runtime/ConsoleObject.h> #include <LibWeb/Bindings/MainThreadVM.h> +#include <LibWeb/CSS/StyleComputer.h> #include <LibWeb/DOM/Document.h> #include <LibWeb/Dump.h> #include <LibWeb/HTML/BrowsingContext.h> |