HTMLLIElement.idl 313 B

123456789101112
  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. // FIXME: [CEReactions] attribute long value;
  7. [CEReactions, Reflect] attribute DOMString type;
  8. };