mirror of
https://github.com/RGBCube/serenity
synced 2025-05-20 14:25:08 +00:00

From the Web IDL spec: https://heycam.github.io/webidl/#idl-undefined [...] undefined constant values in IDL are represented with the `undefined` token. [...] Note: This value was previously spelled `void`, and more limited in how it was allowed to be used.
23 lines
651 B
Text
23 lines
651 B
Text
interface Event {
|
|
|
|
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;
|
|
|
|
};
|