Confirmed users
1,340
edits
(→WebIDL) |
No edit summary |
||
(3 intermediate revisions by one other user not shown) | |||
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 | |||
DOMRequest skipTo(unsigned long chunk); | |||
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 | ||
readonly attribute chunkSize; | |||
}; | }; | ||
Line 123: | Line 125: | ||
} | } | ||
</pre> | </pre> | ||
[[Category:Web APIs]] |