HTMLCollection.idl 307 B

1234567891011
  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. };