summaryrefslogtreecommitdiff
path: root/Libraries/LibWeb/DOM/Element.h
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-06-07 23:27:03 +0200
committerAndreas Kling <kling@serenityos.org>2020-06-07 23:27:03 +0200
commit992697d99f40920dcd772c6e66e8eaeede8b1bb2 (patch)
tree7dcc6e77c8e74f732fb09d11ac43bec1205f8466 /Libraries/LibWeb/DOM/Element.h
parent10851d87a2071d22e49fecb5a3fd19f7157c392a (diff)
downloadserenity-992697d99f40920dcd772c6e66e8eaeede8b1bb2.zip
LibWeb: Add HTML::TagNames namespace for global tag name FlyStrings
Instead of "iframe", we can now say HTML::TagNames::iframe and avoid a FlyString lookup.
Diffstat (limited to 'Libraries/LibWeb/DOM/Element.h')
-rw-r--r--Libraries/LibWeb/DOM/Element.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Libraries/LibWeb/DOM/Element.h b/Libraries/LibWeb/DOM/Element.h
index e7d88d84ae..e8d0e4faba 100644
--- a/Libraries/LibWeb/DOM/Element.h
+++ b/Libraries/LibWeb/DOM/Element.h
@@ -31,6 +31,7 @@
#include <LibWeb/DOM/Attribute.h>
#include <LibWeb/DOM/AttributeNames.h>
#include <LibWeb/DOM/ParentNode.h>
+#include <LibWeb/DOM/TagNames.h>
#include <LibWeb/Layout/LayoutNode.h>
namespace Web {