1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-08 05:27:14 +09:00
ladybird/Libraries/LibWeb/Geometry/DOMRectList.idl

9 lines
240 B
Text

#import <Geometry/DOMRect.idl>
// https://drafts.fxtf.org/geometry/#domrectlist
[Exposed=Window]
interface DOMRectList {
getter DOMRect? item(unsigned long index);
readonly attribute unsigned long length;
iterable<DOMRect>;
};