HTMLOListElement.idl 435 B

12345678910111213141516
  1. #import <HTML/HTMLElement.idl>
  2. // https://html.spec.whatwg.org/multipage/grouping-content.html#htmlolistelement
  3. [Exposed=Window]
  4. interface HTMLOListElement : HTMLElement {
  5. [HTMLConstructor] constructor();
  6. [CEReactions, Reflect] attribute boolean reversed;
  7. [CEReactions] attribute long start;
  8. [CEReactions, Reflect] attribute DOMString type;
  9. // Obsolete
  10. [CEReactions, Reflect] attribute boolean compact;
  11. };