9 lines
186 B
Text
9 lines
186 B
Text
|
|
[CustomGet,CustomGetByIndex]
|
||
|
|
interface HTMLCollection {
|
||
|
|
|
||
|
|
readonly attribute unsigned long length;
|
||
|
|
Element? item(unsigned long index);
|
||
|
|
Element? namedItem(DOMString name);
|
||
|
|
|
||
|
|
};
|