tor-browser

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

Blob-stream-byob-crash.html (257B)


      1 <!DOCTYPE html>
      2 <script type="module">
      3  let a = new Blob(['', '', undefined], { })
      4  let b = a.stream()
      5  let c = new ReadableStreamBYOBReader(b)
      6  let d = new Int16Array(8)
      7  await c.read(d)
      8  c.releaseLock()
      9  await a.text()
     10  await b.cancel()
     11 </script>