HTMLAllCollection.idl 510 B

12345678910111213
  1. #import <DOM/Element.idl>
  2. #import <DOM/HTMLCollection.idl>
  3. [Exposed=Window,
  4. LegacyUnenumerableNamedProperties]
  5. interface HTMLAllCollection {
  6. readonly attribute unsigned long length;
  7. getter Element (unsigned long index);
  8. getter (HTMLCollection or Element)? namedItem([FlyString] DOMString name);
  9. (HTMLCollection or Element)? item(optional [FlyString] DOMString nameOrIndex);
  10. // Note: HTMLAllCollection objects have a custom [[Call]] internal method and an [[IsHTMLDDA]] internal slot.
  11. };