LibWeb: Fix #include <LibWeb/{DOM => HTML}/AttributeNames.h>

This file has been moved from DOM/ to HTML/ in
a784090b91.
This commit is contained in:
Linus Groh 2020-08-12 14:46:53 +02:00 committed by Andreas Kling
parent 64c15798e7
commit 7390098adc
Notes: sideshowbarker 2024-07-19 03:43:29 +09:00
5 changed files with 5 additions and 5 deletions

View File

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

View File

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

View File

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

View File

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

View File

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