Newer
Older
minerva / Userland / Libraries / LibWeb / HTML / BeforeUnloadEvent.idl
@minerva minerva on 13 Jul 216 bytes Initial commit
#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;
};