These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
7 lines
208 B
Text
7 lines
208 B
Text
// https://drafts.fxtf.org/geometry/#domrectlist
|
|
[Exposed=Window]
|
|
interface DOMRectList {
|
|
getter DOMRect? item(unsigned long index);
|
|
readonly attribute unsigned long length;
|
|
iterable<DOMRect>;
|
|
};
|