1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 14:37:46 +00:00

LibWeb: Add barebones implementation of DOMPoint and DOMPointReadOnly

This commit is contained in:
Andreas Kling 2022-07-12 20:06:50 +02:00
parent 5744211001
commit e883777a18
7 changed files with 131 additions and 0 deletions

View file

@ -59,6 +59,10 @@
#include <LibWeb/Bindings/DOMImplementationPrototype.h>
#include <LibWeb/Bindings/DOMParserConstructor.h>
#include <LibWeb/Bindings/DOMParserPrototype.h>
#include <LibWeb/Bindings/DOMPointConstructor.h>
#include <LibWeb/Bindings/DOMPointPrototype.h>
#include <LibWeb/Bindings/DOMPointReadOnlyConstructor.h>
#include <LibWeb/Bindings/DOMPointReadOnlyPrototype.h>
#include <LibWeb/Bindings/DOMRectConstructor.h>
#include <LibWeb/Bindings/DOMRectListConstructor.h>
#include <LibWeb/Bindings/DOMRectListPrototype.h>
@ -403,6 +407,8 @@
ADD_WINDOW_OBJECT_INTERFACE(DOMException) \
ADD_WINDOW_OBJECT_INTERFACE(DOMImplementation) \
ADD_WINDOW_OBJECT_INTERFACE(DOMParser) \
ADD_WINDOW_OBJECT_INTERFACE(DOMPoint) \
ADD_WINDOW_OBJECT_INTERFACE(DOMPointReadOnly) \
ADD_WINDOW_OBJECT_INTERFACE(DOMRect) \
ADD_WINDOW_OBJECT_INTERFACE(DOMRectList) \
ADD_WINDOW_OBJECT_INTERFACE(DOMRectReadOnly) \