summaryrefslogtreecommitdiff
path: root/Libraries/LibWeb/Layout
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-07-26 15:08:16 +0200
committerAndreas Kling <kling@serenityos.org>2020-07-26 17:51:00 +0200
commita56512179324f3634ec76314d15345610f593ab2 (patch)
treec58400a846f1d6a3e92db8304973f768fee25830 /Libraries/LibWeb/Layout
parentfbc54a2dbaf11ee90a5d84c86c25022c3ce4255a (diff)
downloadserenity-a56512179324f3634ec76314d15345610f593ab2.zip
LibWeb: Move HTML object model stuff into LibWeb/HTML/
Take a hint from SVG and more all the HTML classes into HTML instead of mixing them with the DOM classes.
Diffstat (limited to 'Libraries/LibWeb/Layout')
-rw-r--r--Libraries/LibWeb/Layout/LayoutBox.cpp2
-rw-r--r--Libraries/LibWeb/Layout/LayoutBreak.h2
-rw-r--r--Libraries/LibWeb/Layout/LayoutCanvas.h2
-rw-r--r--Libraries/LibWeb/Layout/LayoutFrame.h2
-rw-r--r--Libraries/LibWeb/Layout/LayoutImage.h2
5 files changed, 5 insertions, 5 deletions
diff --git a/Libraries/LibWeb/Layout/LayoutBox.cpp b/Libraries/LibWeb/Layout/LayoutBox.cpp
index 4e84d22324..25c6c34e57 100644
--- a/Libraries/LibWeb/Layout/LayoutBox.cpp
+++ b/Libraries/LibWeb/Layout/LayoutBox.cpp
@@ -26,7 +26,7 @@
#include <LibGUI/Painter.h>
#include <LibWeb/DOM/Document.h>
-#include <LibWeb/DOM/HTMLBodyElement.h>
+#include <LibWeb/HTML/HTMLBodyElement.h>
#include <LibWeb/Frame/Frame.h>
#include <LibWeb/Layout/LayoutBlock.h>
#include <LibWeb/Layout/LayoutBox.h>
diff --git a/Libraries/LibWeb/Layout/LayoutBreak.h b/Libraries/LibWeb/Layout/LayoutBreak.h
index 6f6b930367..1d52acaf4c 100644
--- a/Libraries/LibWeb/Layout/LayoutBreak.h
+++ b/Libraries/LibWeb/Layout/LayoutBreak.h
@@ -26,7 +26,7 @@
#pragma once
-#include <LibWeb/DOM/HTMLBRElement.h>
+#include <LibWeb/HTML/HTMLBRElement.h>
#include <LibWeb/Layout/LayoutNode.h>
namespace Web {
diff --git a/Libraries/LibWeb/Layout/LayoutCanvas.h b/Libraries/LibWeb/Layout/LayoutCanvas.h
index 74aefe5754..1808e21786 100644
--- a/Libraries/LibWeb/Layout/LayoutCanvas.h
+++ b/Libraries/LibWeb/Layout/LayoutCanvas.h
@@ -26,7 +26,7 @@
#pragma once
-#include <LibWeb/DOM/HTMLCanvasElement.h>
+#include <LibWeb/HTML/HTMLCanvasElement.h>
#include <LibWeb/Layout/LayoutReplaced.h>
namespace Web {
diff --git a/Libraries/LibWeb/Layout/LayoutFrame.h b/Libraries/LibWeb/Layout/LayoutFrame.h
index 56f84cb188..10f5d62b6b 100644
--- a/Libraries/LibWeb/Layout/LayoutFrame.h
+++ b/Libraries/LibWeb/Layout/LayoutFrame.h
@@ -27,7 +27,7 @@
#pragma once
#include <LibWeb/Layout/LayoutReplaced.h>
-#include <LibWeb/DOM/HTMLIFrameElement.h>
+#include <LibWeb/HTML/HTMLIFrameElement.h>
namespace Web {
diff --git a/Libraries/LibWeb/Layout/LayoutImage.h b/Libraries/LibWeb/Layout/LayoutImage.h
index 81871246b8..7e639fda2b 100644
--- a/Libraries/LibWeb/Layout/LayoutImage.h
+++ b/Libraries/LibWeb/Layout/LayoutImage.h
@@ -26,7 +26,7 @@
#pragma once
-#include <LibWeb/DOM/HTMLImageElement.h>
+#include <LibWeb/HTML/HTMLImageElement.h>
#include <LibWeb/Layout/LayoutReplaced.h>
namespace Web {