HTMLUListElement.idl 339 B

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