Re: [whatwg/dom] AbortSignal consumers can potentialy emit abort event on it (#784)

```js
signal = new AbortController().signal;
Object.defineProperty(signal, "aborted", { value: 1 })
console.log(signal.aborted); // 1
```

-- 
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/784#issuecomment-530811250

Received on Thursday, 12 September 2019 12:54:02 UTC