trisquel-icecat/icecat/dom/streams/crashtests/1764222.html

10 lines
281 B
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!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>