1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 04:57:45 +00:00

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.
This commit is contained in:
Andreas Kling 2020-07-26 15:08:16 +02:00
parent fbc54a2dba
commit a565121793
77 changed files with 159 additions and 152 deletions

View file

@ -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>

View file

@ -26,7 +26,7 @@
#pragma once
#include <LibWeb/DOM/HTMLBRElement.h>
#include <LibWeb/HTML/HTMLBRElement.h>
#include <LibWeb/Layout/LayoutNode.h>
namespace Web {

View file

@ -26,7 +26,7 @@
#pragma once
#include <LibWeb/DOM/HTMLCanvasElement.h>
#include <LibWeb/HTML/HTMLCanvasElement.h>
#include <LibWeb/Layout/LayoutReplaced.h>
namespace Web {

View file

@ -27,7 +27,7 @@
#pragma once
#include <LibWeb/Layout/LayoutReplaced.h>
#include <LibWeb/DOM/HTMLIFrameElement.h>
#include <LibWeb/HTML/HTMLIFrameElement.h>
namespace Web {

View file

@ -26,7 +26,7 @@
#pragma once
#include <LibWeb/DOM/HTMLImageElement.h>
#include <LibWeb/HTML/HTMLImageElement.h>
#include <LibWeb/Layout/LayoutReplaced.h>
namespace Web {