summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/FileAPI/blob/Blob-stream-sync-xhr-crash.html
blob: fe54fb615b1579a8a75396184f24f0b4ed3d2984 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!DOCTYPE html>
<script>
  const blob = new Blob([1, 2]);
  const readable = blob.stream()
  const writable = new WritableStream({}, {
    size() {
      let xhr = new XMLHttpRequest()
      xhr.open("POST", "1", false)
      xhr.send()
    }
  })
  readable.pipeThrough({ readable, writable })
</script>