HTMLCollection.idl 223 B

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