HTMLCollection.idl 305 B

123456789
  1. #import <DOM/Element.idl>
  2. // https://dom.spec.whatwg.org/#interface-htmlcollection
  3. [Exposed=Window, LegacyUnenumerableNamedProperties]
  4. interface HTMLCollection {
  5. readonly attribute unsigned long length;
  6. getter Element? item(unsigned long index);
  7. getter Element? namedItem(DOMString name);
  8. };