172
edits
(→WebIDL) |
(→WebIDL) |
||
Line 42: | Line 42: | ||
[NoInterfaceObject] | [NoInterfaceObject] | ||
interface DOMIterator { | interface DOMIterator { | ||
DOMRequest next( | DOMRequest next(); // request to refresh the window of objects with the next | ||
DOMRequest prev(); // request to refresh the window of objects with the prev | |||
readonly attribute boolean hasMore; | |||
readonly attribute unsigned long count; // total number of objects | readonly attribute unsigned long count; // total number of objects | ||
readonly attribute any[] values; // Contains the current window of objects | readonly attribute any[]? values; // Contains the current window of objects | ||
}; | }; | ||
edits