1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 05:27:46 +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:
DerpyCrabs 2022-02-12 16:38:54 +03:00 committed by Andreas Kling
parent 0532d7d255
commit 2f828231c4
7 changed files with 101 additions and 0 deletions

View file

@ -95,6 +95,7 @@ set(SOURCES
Encoding/TextEncoder.cpp
Fetch/AbstractOperations.cpp
FontCache.cpp
Geometry/DOMRectList.cpp
HTML/AttributeNames.cpp
HTML/BrowsingContext.cpp
HTML/BrowsingContextContainer.cpp
@ -420,6 +421,7 @@ libweb_js_wrapper(DOM/ShadowRoot)
libweb_js_wrapper(DOM/Text)
libweb_js_wrapper(Encoding/TextEncoder)
libweb_js_wrapper(Geometry/DOMRect)
libweb_js_wrapper(Geometry/DOMRectList)
libweb_js_wrapper(Geometry/DOMRectReadOnly)
libweb_js_wrapper(HTML/CanvasGradient)
libweb_js_wrapper(HTML/CanvasRenderingContext2D)