Newer
Older
minerva / Userland / Libraries / LibWeb / DOM / EventTarget.idl
@minerva minerva on 13 Jul 811 bytes Initial commit
#import <DOM/AbortSignal.idl>

// https://dom.spec.whatwg.org/#eventtarget
[Exposed=*]
interface EventTarget {
    constructor();

    undefined addEventListener(DOMString type, EventListener? callback, optional (AddEventListenerOptions or boolean) options = {});
    undefined removeEventListener(DOMString type, EventListener? callback, optional (EventListenerOptions or boolean) options = {});
    [ImplementedAs=dispatch_event_binding] boolean dispatchEvent(Event event);
};

// FIXME: support callback interface
//callback interface EventListener {
//    undefined handleEvent(Event event);
//};

dictionary EventListenerOptions {
    boolean capture = false;
};

dictionary AddEventListenerOptions : EventListenerOptions {
    boolean passive = false;
    boolean once = false;
    AbortSignal signal;
};