mirror of
https://github.com/RGBCube/serenity
synced 2025-05-16 19:35:08 +00:00

Implement DOMRectList that is used as a return type of getClientRects functions on Element and Range.
6 lines
159 B
Text
6 lines
159 B
Text
[Exposed=Window]
|
|
interface DOMRectList {
|
|
getter DOMRect? item(unsigned long index);
|
|
readonly attribute unsigned long length;
|
|
iterable<DOMRect>;
|
|
};
|