HTMLDialogElement.idl 443 B

123456789101112131415
  1. #import <HTML/HTMLElement.idl>
  2. // https://html.spec.whatwg.org/multipage/semantics.html#htmldialogelement
  3. [Exposed=Window]
  4. interface HTMLDialogElement : HTMLElement {
  5. [HTMLConstructor] constructor();
  6. [CEReactions, Reflect] attribute boolean open;
  7. attribute DOMString returnValue;
  8. [CEReactions] undefined show();
  9. [CEReactions] undefined showModal();
  10. [CEReactions] undefined close(optional DOMString returnValue);
  11. };