mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 05:17:35 +00:00
LibWeb: Implement Geometry::DOMRectList
Implement DOMRectList that is used as a return type of getClientRects functions on Element and Range.
This commit is contained in:
parent
0532d7d255
commit
2f828231c4
7 changed files with 101 additions and 0 deletions
|
@ -43,6 +43,8 @@
|
|||
#include <LibWeb/Bindings/DOMParserConstructor.h>
|
||||
#include <LibWeb/Bindings/DOMParserPrototype.h>
|
||||
#include <LibWeb/Bindings/DOMRectConstructor.h>
|
||||
#include <LibWeb/Bindings/DOMRectListConstructor.h>
|
||||
#include <LibWeb/Bindings/DOMRectListPrototype.h>
|
||||
#include <LibWeb/Bindings/DOMRectPrototype.h>
|
||||
#include <LibWeb/Bindings/DOMRectReadOnlyConstructor.h>
|
||||
#include <LibWeb/Bindings/DOMRectReadOnlyPrototype.h>
|
||||
|
@ -338,6 +340,7 @@
|
|||
ADD_WINDOW_OBJECT_INTERFACE(DOMImplementation) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(DOMParser) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(DOMRect) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(DOMRectList) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(DOMRectReadOnly) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(DOMStringMap) \
|
||||
ADD_WINDOW_OBJECT_INTERFACE(Element) \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue