mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-16 05:51:55 +00:00
26 lines
757 B
Text
26 lines
757 B
Text
interface Event {
|
|
|
|
// FIXME: second parameter: 'optional EventInit eventInitDict = {}'
|
|
constructor(DOMString type);
|
|
|
|
readonly attribute DOMString type;
|
|
readonly attribute EventTarget? target;
|
|
readonly attribute EventTarget? srcTarget;
|
|
readonly attribute EventTarget? currentTarget;
|
|
|
|
readonly attribute unsigned short eventPhase;
|
|
|
|
undefined stopPropagation();
|
|
attribute boolean cancelBubble;
|
|
undefined stopImmediatePropagation();
|
|
|
|
readonly attribute boolean bubbles;
|
|
readonly attribute boolean cancelable;
|
|
attribute boolean returnValue;
|
|
undefined preventDefault();
|
|
readonly attribute boolean defaultPrevented;
|
|
readonly attribute boolean composed;
|
|
|
|
readonly attribute boolean isTrusted;
|
|
|
|
};
|