diff options
author | Linus Groh <mail@linusgroh.de> | 2020-08-12 14:46:53 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-08-12 15:37:42 +0200 |
commit | 7390098adcfae38d7d313d5f2f5eca9b4462463e (patch) | |
tree | a2600e9fb975f19029c111eb2514e9b7f6694800 /Libraries | |
parent | 64c15798e74ca1097c8553fc7b3d0603856aa136 (diff) | |
download | serenity-7390098adcfae38d7d313d5f2f5eca9b4462463e.zip |
LibWeb: Fix #include <LibWeb/{DOM => HTML}/AttributeNames.h>
This file has been moved from DOM/ to HTML/ in
a784090b91139776b26fbac2a8426de3abdea308.
Diffstat (limited to 'Libraries')
-rw-r--r-- | Libraries/LibWeb/CSS/SelectorEngine.cpp | 2 | ||||
-rw-r--r-- | Libraries/LibWeb/DOM/Document.cpp | 2 | ||||
-rw-r--r-- | Libraries/LibWeb/DOM/Element.h | 2 | ||||
-rw-r--r-- | Libraries/LibWeb/DOM/NonElementParentNode.h | 2 | ||||
-rw-r--r-- | Libraries/LibWeb/HTML/AttributeNames.cpp | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/Libraries/LibWeb/CSS/SelectorEngine.cpp b/Libraries/LibWeb/CSS/SelectorEngine.cpp index 401a455a53..d640c5bc54 100644 --- a/Libraries/LibWeb/CSS/SelectorEngine.cpp +++ b/Libraries/LibWeb/CSS/SelectorEngine.cpp @@ -25,10 +25,10 @@ */ #include <LibWeb/CSS/SelectorEngine.h> -#include <LibWeb/DOM/AttributeNames.h> #include <LibWeb/DOM/Document.h> #include <LibWeb/DOM/Element.h> #include <LibWeb/DOM/Text.h> +#include <LibWeb/HTML/AttributeNames.h> namespace Web::SelectorEngine { diff --git a/Libraries/LibWeb/DOM/Document.cpp b/Libraries/LibWeb/DOM/Document.cpp index ffb5eecb97..4796362c5c 100644 --- a/Libraries/LibWeb/DOM/Document.cpp +++ b/Libraries/LibWeb/DOM/Document.cpp @@ -38,7 +38,6 @@ #include <LibWeb/CSS/Parser/CSSParser.h> #include <LibWeb/CSS/SelectorEngine.h> #include <LibWeb/CSS/StyleResolver.h> -#include <LibWeb/DOM/AttributeNames.h> #include <LibWeb/DOM/Document.h> #include <LibWeb/DOM/DocumentType.h> #include <LibWeb/DOM/Element.h> @@ -46,6 +45,7 @@ #include <LibWeb/DOM/Text.h> #include <LibWeb/DOM/Window.h> #include <LibWeb/Dump.h> +#include <LibWeb/HTML/AttributeNames.h> #include <LibWeb/HTML/HTMLBodyElement.h> #include <LibWeb/HTML/HTMLHeadElement.h> #include <LibWeb/HTML/HTMLHtmlElement.h> diff --git a/Libraries/LibWeb/DOM/Element.h b/Libraries/LibWeb/DOM/Element.h index 77d54c4940..6f8a772994 100644 --- a/Libraries/LibWeb/DOM/Element.h +++ b/Libraries/LibWeb/DOM/Element.h @@ -29,10 +29,10 @@ #include <AK/FlyString.h> #include <AK/String.h> #include <LibWeb/DOM/Attribute.h> -#include <LibWeb/DOM/AttributeNames.h> #include <LibWeb/DOM/NonDocumentTypeChildNode.h> #include <LibWeb/DOM/ParentNode.h> #include <LibWeb/DOM/TagNames.h> +#include <LibWeb/HTML/AttributeNames.h> #include <LibWeb/Layout/LayoutNode.h> namespace Web::DOM { diff --git a/Libraries/LibWeb/DOM/NonElementParentNode.h b/Libraries/LibWeb/DOM/NonElementParentNode.h index 14acae72a0..ecac906027 100644 --- a/Libraries/LibWeb/DOM/NonElementParentNode.h +++ b/Libraries/LibWeb/DOM/NonElementParentNode.h @@ -27,8 +27,8 @@ #pragma once #include <AK/Forward.h> -#include <LibWeb/DOM/AttributeNames.h> #include <LibWeb/Forward.h> +#include <LibWeb/HTML/AttributeNames.h> #include <LibWeb/TreeNode.h> namespace Web::DOM { diff --git a/Libraries/LibWeb/HTML/AttributeNames.cpp b/Libraries/LibWeb/HTML/AttributeNames.cpp index 7d0efad171..8fcdd7d944 100644 --- a/Libraries/LibWeb/HTML/AttributeNames.cpp +++ b/Libraries/LibWeb/HTML/AttributeNames.cpp @@ -24,7 +24,7 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#include <LibWeb/DOM/AttributeNames.h> +#include <LibWeb/HTML/AttributeNames.h> namespace Web { namespace HTML { |