mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-25 10:48:41 +00:00
17 lines
396 B
Plaintext
17 lines
396 B
Plaintext
#import <DOM/Event.idl>
|
|
|
|
[]
|
|
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 = "";
|
|
};
|