mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
14 lines
360 B
Plaintext
14 lines
360 B
Plaintext
#import <DOM/EventTarget.idl>
|
|
#import <DOM/EventHandler.idl>
|
|
|
|
[Exposed=(Window,Worker), CustomVisit]
|
|
interface AbortSignal : EventTarget {
|
|
// FIXME: [NewObject] static AbortSignal abort(optional any reason);
|
|
|
|
readonly attribute boolean aborted;
|
|
readonly attribute any reason;
|
|
undefined throwIfAborted();
|
|
|
|
attribute EventHandler onabort;
|
|
};
|