blob: a46eaae847745f90207e23f462cc60fce2e0eef8 (
plain)
1
2
3
4
5
6
7
8
|
#import <Geometry/DOMRect.idl>
[Exposed=Window]
interface DOMRectList {
getter DOMRect? item(unsigned long index);
readonly attribute unsigned long length;
iterable<DOMRect>;
};
|