mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
23 lines
705 B
Plaintext
23 lines
705 B
Plaintext
[MissingValueDefault=auto, InvalidValueDefault=auto]
|
|
enum ClosedByAttribute {
|
|
"any",
|
|
"closerequest",
|
|
"none"
|
|
};
|
|
|
|
// https://html.spec.whatwg.org/multipage/semantics.html#htmldialogelement
|
|
[Exposed=Window]
|
|
interface HTMLDialogElement : HTMLElement {
|
|
|
|
[HTMLConstructor] constructor();
|
|
|
|
[CEReactions, Reflect] attribute boolean open;
|
|
attribute DOMString returnValue;
|
|
[CEReactions, Reflect=closedby, Enumerated=ClosedByAttribute] attribute DOMString closedBy;
|
|
[CEReactions] undefined show();
|
|
[CEReactions] undefined showModal();
|
|
[CEReactions] undefined close(optional DOMString returnValue);
|
|
[CEReactions] undefined requestClose(optional DOMString returnValue);
|
|
|
|
};
|