mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-14 10:56:35 +02:00
I noticed some of these were running behind the upstream spec. (cherry picked from commit d5fd29adb79641830835e2efd9541de08d0ad6fc)
12 lines
251 B
Plaintext
12 lines
251 B
Plaintext
#import <DOM/AbortSignal.idl>
|
|
|
|
// https://dom.spec.whatwg.org/#interface-abortcontroller
|
|
[Exposed=*]
|
|
interface AbortController {
|
|
constructor();
|
|
|
|
[SameObject] readonly attribute AbortSignal signal;
|
|
|
|
undefined abort(optional any reason);
|
|
};
|