mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-02 06:37:52 +00:00
Implement DOMRectList that is used as a return type of getClientRects functions on Element and Range.
7 lines
159 B
Plaintext
7 lines
159 B
Plaintext
[Exposed=Window]
|
|
interface DOMRectList {
|
|
getter DOMRect? item(unsigned long index);
|
|
readonly attribute unsigned long length;
|
|
iterable<DOMRect>;
|
|
};
|