tor-browser

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

many-empty-chunks-crash.html (243B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <script>
      4  new Response(new ReadableStream({
      5    start(c) {
      6 
      7      for (const i of new Array(40000).fill()) {
      8        c.enqueue(new Uint8Array(0));
      9      }
     10      c.close();
     11 
     12    }
     13  })).text();
     14 </script>