Re: [whatwg/dom] Specify that AbortController#abort() be bound to AbortController instance (#981)

Anything we do will have to be backwards compatible. I vaguely wonder if we should add this:
```js
const signal = new AbortSignal(abort => {
  $('#someButton').addEventListener('click', abort);
});
```
@jakearchibald @domenic do you remember why we went with an explicit `AbortController` object?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/dom/issues/981#issuecomment-844706381

Received on Thursday, 20 May 2021 05:25:01 UTC