mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-05 18:52:56 +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>;
|
|
};
|