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

LibWeb: Add DOM::DOMException class and bindings

This commit is contained in:
Linus Groh 2021-02-19 19:04:41 +01:00 committed by Andreas Kling
parent cc0f5917d3
commit ada71dc71b
6 changed files with 207 additions and 1 deletions

View file

@ -34,6 +34,8 @@
#include <LibWeb/Bindings/CharacterDataPrototype.h>
#include <LibWeb/Bindings/CommentConstructor.h>
#include <LibWeb/Bindings/CommentPrototype.h>
#include <LibWeb/Bindings/DOMExceptionConstructor.h>
#include <LibWeb/Bindings/DOMExceptionPrototype.h>
#include <LibWeb/Bindings/DOMImplementationConstructor.h>
#include <LibWeb/Bindings/DOMImplementationPrototype.h>
#include <LibWeb/Bindings/DocumentConstructor.h>
@ -237,6 +239,7 @@
ADD_WINDOW_OBJECT_INTERFACE(DocumentFragment) \
ADD_WINDOW_OBJECT_INTERFACE(Document) \
ADD_WINDOW_OBJECT_INTERFACE(DocumentType) \
ADD_WINDOW_OBJECT_INTERFACE(DOMException) \
ADD_WINDOW_OBJECT_INTERFACE(DOMImplementation) \
ADD_WINDOW_OBJECT_INTERFACE(Element) \
ADD_WINDOW_OBJECT_INTERFACE(Event) \