Bug 1766716 Comment 0 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

```js
let a = new AbortController()
a.abort()
let b = new File(['ó ¬a'], 'a', {})
let c = new WritableStream()
await b.stream().tee()[0].pipeTo(c, { 'signal': a.signal })
```

This should reject right away but somehow it never rejects.
```js
let a = new AbortController()
a.abort()
let b = new File(['ó ¬a'], 'a', {})
let c = new WritableStream()
await b.stream().tee()[0].pipeTo(c, { 'signal': a.signal })
```

This rejects right away on Chrome but never rejects on Gecko.

Back to Bug 1766716 Comment 0