HTMLCollection.idl 169 B

12345678
  1. [CustomGet]
  2. interface HTMLCollection {
  3. readonly attribute unsigned long length;
  4. Element? item(unsigned long index);
  5. Element? namedItem(DOMString name);
  6. };