mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 00:25:12 +00:00
11 lines
298 B
Plaintext
11 lines
298 B
Plaintext
[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;
|
|
};
|