summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/Bindings/WindowObjectHelper.h
diff options
context:
space:
mode:
authorLuke Wilde <lukew@serenityos.org>2021-09-26 15:24:41 +0100
committerAndreas Kling <kling@serenityos.org>2021-09-26 18:59:56 +0200
commitf6b24a72ee60be994917d941e30c4fe7ccccfee6 (patch)
tree201c0b4dd3604c0bab2d2f8210d77de7df9b6bf2 /Userland/Libraries/LibWeb/Bindings/WindowObjectHelper.h
parent37347cbcb64e20300155df4168412f58f33f07c6 (diff)
downloadserenity-f6b24a72ee60be994917d941e30c4fe7ccccfee6.zip
LibWeb: Add support for HTMLOrSVGElement.dataset
Diffstat (limited to 'Userland/Libraries/LibWeb/Bindings/WindowObjectHelper.h')
-rw-r--r--Userland/Libraries/LibWeb/Bindings/WindowObjectHelper.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/Bindings/WindowObjectHelper.h b/Userland/Libraries/LibWeb/Bindings/WindowObjectHelper.h
index 04096c8ffc..827773ce89 100644
--- a/Userland/Libraries/LibWeb/Bindings/WindowObjectHelper.h
+++ b/Userland/Libraries/LibWeb/Bindings/WindowObjectHelper.h
@@ -28,6 +28,8 @@
#include <LibWeb/Bindings/DOMImplementationPrototype.h>
#include <LibWeb/Bindings/DOMParserConstructor.h>
#include <LibWeb/Bindings/DOMParserPrototype.h>
+#include <LibWeb/Bindings/DOMStringMapConstructor.h>
+#include <LibWeb/Bindings/DOMStringMapPrototype.h>
#include <LibWeb/Bindings/DocumentConstructor.h>
#include <LibWeb/Bindings/DocumentFragmentConstructor.h>
#include <LibWeb/Bindings/DocumentFragmentPrototype.h>
@@ -268,6 +270,7 @@
ADD_WINDOW_OBJECT_INTERFACE(DOMException) \
ADD_WINDOW_OBJECT_INTERFACE(DOMImplementation) \
ADD_WINDOW_OBJECT_INTERFACE(DOMParser) \
+ ADD_WINDOW_OBJECT_INTERFACE(DOMStringMap) \
ADD_WINDOW_OBJECT_INTERFACE(Element) \
ADD_WINDOW_OBJECT_INTERFACE(Event) \
ADD_WINDOW_OBJECT_INTERFACE(EventTarget) \