tor-browser

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

tee-detached-context-crash.html (267B)


      1 <!doctype html>
      2 <body>
      3 <script>
      4 const i = document.createElement("iframe");
      5 document.body.appendChild(i);
      6 
      7 const rs = new i.contentWindow.ReadableStream();
      8 i.remove();
      9 
     10 // tee() on a ReadableStream from a detached iframe should not crash.
     11 rs.tee();
     12 </script>
     13 </body>