mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
17 lines
421 B
Plaintext
17 lines
421 B
Plaintext
#import <DOM/Event.idl>
|
|
|
|
[Exposed=*, UseNewAKString]
|
|
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 = "";
|
|
};
|