mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
d4a890080d
NewAKString is effectively the default for any new IDL interface, so let's mark this as the default behavior. It also makes it much easier to figure out whatever interfaces are still left to port over to new AK String.
17 lines
405 B
Plaintext
17 lines
405 B
Plaintext
#import <DOM/Event.idl>
|
|
|
|
[Exposed=*]
|
|
interface CloseEvent : Event {
|
|
constructor(DOMString type, optional CloseEventInit eventInitDict = {});
|
|
|
|
readonly attribute boolean wasClean;
|
|
readonly attribute unsigned short code;
|
|
readonly attribute USVString reason;
|
|
};
|
|
|
|
dictionary CloseEventInit : EventInit {
|
|
boolean wasClean = false;
|
|
unsigned short code = 0;
|
|
USVString reason = "";
|
|
};
|