These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
9 lines
220 B
Text
9 lines
220 B
Text
// https://dom.spec.whatwg.org/#interface-abortcontroller
|
|
[Exposed=*]
|
|
interface AbortController {
|
|
constructor();
|
|
|
|
[SameObject] readonly attribute AbortSignal signal;
|
|
|
|
undefined abort(optional any reason);
|
|
};
|