mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
8 lines
216 B
Plaintext
8 lines
216 B
Plaintext
#import <DOM/Event.idl>
|
|
|
|
// https://html.spec.whatwg.org/multipage/nav-history-apis.html#the-beforeunloadevent-interface
|
|
[Exposed=Window]
|
|
interface BeforeUnloadEvent : Event {
|
|
attribute DOMString returnValue;
|
|
};
|