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
commit 2f828231c4
Notes: sideshowbarker 2024-07-17 22:41:14 +09:00
7 changed files with 101 additions and 0 deletions

View file

@ -0,0 +1,6 @@
[Exposed=Window]
interface DOMRectList {
getter DOMRect? item(unsigned long index);
readonly attribute unsigned long length;
iterable<DOMRect>;
};