mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
7625d8a155
This method takes a list of AbortSignals and returns an AbortSignal that is aborted when any of the input signals is aborted.
18 lines
640 B
Plaintext
18 lines
640 B
Plaintext
#import <DOM/EventTarget.idl>
|
|
#import <DOM/EventHandler.idl>
|
|
|
|
// https://dom.spec.whatwg.org/#interface-AbortSignal
|
|
[Exposed=(Window,Worker), CustomVisit]
|
|
interface AbortSignal : EventTarget {
|
|
[NewObject] static AbortSignal abort(optional any reason);
|
|
[Exposed=(Window,Worker), NewObject] static AbortSignal timeout([EnforceRange] unsigned long long milliseconds);
|
|
// FIXME: Argument should be of type: sequence<AbortSignal>.
|
|
[NewObject] static AbortSignal _any(any signals);
|
|
|
|
readonly attribute boolean aborted;
|
|
readonly attribute any reason;
|
|
undefined throwIfAborted();
|
|
|
|
attribute EventHandler onabort;
|
|
};
|