ladybird/Userland/Libraries/LibWeb/Geometry/DOMRectList.idl
DerpyCrabs 2f828231c4 LibWeb: Implement Geometry::DOMRectList
Implement DOMRectList that is used as a return type of
getClientRects functions on Element and Range.
2022-02-12 22:43:10 +01:00

6 lines
159 B
Text

[Exposed=Window]
interface DOMRectList {
getter DOMRect? item(unsigned long index);
readonly attribute unsigned long length;
iterable<DOMRect>;
};