summaryrefslogtreecommitdiff
path: root/Libraries/LibWeb/Layout/LayoutImage.h
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/LayoutImage.h
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/LayoutImage.h')
-rw-r--r--Libraries/LibWeb/Layout/LayoutImage.h2
1 files changed, 1 insertions, 1 deletions
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 {