HTMLDetailsElement.idl 317 B

123456789101112
  1. #import <HTML/HTMLElement.idl>
  2. // https://html.spec.whatwg.org/multipage/semantics.html#htmldetailselement
  3. [Exposed=Window]
  4. interface HTMLDetailsElement : HTMLElement {
  5. [HTMLConstructor] constructor();
  6. [CEReactions, Reflect] attribute DOMString name;
  7. [CEReactions, Reflect] attribute boolean open;
  8. };