tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

Blob-stream-sync-xhr-crash.html (305B)


      1 <!DOCTYPE html>
      2 <script>
      3  const blob = new Blob([1, 2]);
      4  const readable = blob.stream()
      5  const writable = new WritableStream({}, {
      6    size() {
      7      let xhr = new XMLHttpRequest()
      8      xhr.open("POST", "1", false)
      9      xhr.send()
     10    }
     11  })
     12  readable.pipeThrough({ readable, writable })
     13 </script>