summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/Layout
diff options
context:
space:
mode:
authorBrian Gianforcaro <bgianf@serenityos.org>2021-07-31 03:45:38 -0700
committerGunnar Beutner <gunnar@beutner.name>2021-08-01 08:10:16 +0200
commit217179a39f01cf50c525e4519e421f1fb3f0966c (patch)
tree9b865871e6a8cba608d965ccbc8a4bb57a6bfc1b /Userland/Libraries/LibWeb/Layout
parentb0fbea848b86a1aa888ccbcceebf4f800a2397f6 (diff)
downloadserenity-217179a39f01cf50c525e4519e421f1fb3f0966c.zip
LibWeb: Remove unused header includes
Diffstat (limited to 'Userland/Libraries/LibWeb/Layout')
-rw-r--r--Userland/Libraries/LibWeb/Layout/BlockBox.cpp1
-rw-r--r--Userland/Libraries/LibWeb/Layout/Box.cpp1
-rw-r--r--Userland/Libraries/LibWeb/Layout/Node.cpp1
-rw-r--r--Userland/Libraries/LibWeb/Layout/TextNode.cpp1
4 files changed, 0 insertions, 4 deletions
diff --git a/Userland/Libraries/LibWeb/Layout/BlockBox.cpp b/Userland/Libraries/LibWeb/Layout/BlockBox.cpp
index 5867331aaa..d295428615 100644
--- a/Userland/Libraries/LibWeb/Layout/BlockBox.cpp
+++ b/Userland/Libraries/LibWeb/Layout/BlockBox.cpp
@@ -5,7 +5,6 @@
*/
#include <LibGfx/Painter.h>
-#include <LibWeb/CSS/StyleResolver.h>
#include <LibWeb/Dump.h>
#include <LibWeb/Layout/BlockBox.h>
#include <LibWeb/Layout/InitialContainingBlockBox.h>
diff --git a/Userland/Libraries/LibWeb/Layout/Box.cpp b/Userland/Libraries/LibWeb/Layout/Box.cpp
index 1c3cf9365e..da4aa9e0f9 100644
--- a/Userland/Libraries/LibWeb/Layout/Box.cpp
+++ b/Userland/Libraries/LibWeb/Layout/Box.cpp
@@ -6,7 +6,6 @@
#include <LibGfx/DisjointRectSet.h>
#include <LibGfx/Filters/FastBoxBlurFilter.h>
-#include <LibGfx/Filters/SpatialGaussianBlurFilter.h>
#include <LibGfx/Painter.h>
#include <LibWeb/DOM/Document.h>
#include <LibWeb/HTML/HTMLBodyElement.h>
diff --git a/Userland/Libraries/LibWeb/Layout/Node.cpp b/Userland/Libraries/LibWeb/Layout/Node.cpp
index b6069936ae..9807beb548 100644
--- a/Userland/Libraries/LibWeb/Layout/Node.cpp
+++ b/Userland/Libraries/LibWeb/Layout/Node.cpp
@@ -16,7 +16,6 @@
#include <LibWeb/Layout/Node.h>
#include <LibWeb/Layout/TextNode.h>
#include <LibWeb/Page/BrowsingContext.h>
-#include <typeinfo>
namespace Web::Layout {
diff --git a/Userland/Libraries/LibWeb/Layout/TextNode.cpp b/Userland/Libraries/LibWeb/Layout/TextNode.cpp
index 6b5e0bbdb4..48aaaa767c 100644
--- a/Userland/Libraries/LibWeb/Layout/TextNode.cpp
+++ b/Userland/Libraries/LibWeb/Layout/TextNode.cpp
@@ -5,7 +5,6 @@
*/
#include <AK/CharacterTypes.h>
-#include <AK/ScopeGuard.h>
#include <AK/StringBuilder.h>
#include <LibGfx/Painter.h>
#include <LibWeb/DOM/Document.h>