HTMLLIElement.idl 320 B

1234567891011121314
  1. #import <HTML/HTMLElement.idl>
  2. // https://html.spec.whatwg.org/multipage/grouping-content.html#htmllielement
  3. [Exposed=Window]
  4. interface HTMLLIElement : HTMLElement {
  5. [HTMLConstructor] constructor();
  6. [CEReactions] attribute long value;
  7. // Obsolete
  8. [CEReactions, Reflect] attribute DOMString type;
  9. };