summaryrefslogtreecommitdiffstats
path: root/dom/streams/crashtests/1764222.html
blob: a48a1168a12fffbfc7dbe3ac73086c8548e32b8f (plain)
1
2
3
4
5
6
7
8
9
10
<!DOCTYPE html>
<meta charset="utf-8">
<script>
  // This can't be in WPT because of bug 1766711.
  let a = new AbortController()
  a.abort()
  let b = new File(['ó ¬—a'], 'a', {})
  let c = new WritableStream()
  b.stream().tee()[0].pipeTo(c, { 'signal': a.signal })
</script>