tor-browser

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

child.html (327B)


      1 <!doctype html>
      2 <html>
      3 <head><title>Frozen Child iframe</title></head>
      4 <body>
      5 <script>
      6 
      7 // This child removes itself from the parent on dispatch of the freeze event.
      8 // Regression test of https://crbug.com/994442
      9 window.document.addEventListener("freeze", () => {
     10  window.frameElement.remove();
     11 });
     12 
     13 </script>
     14 </body>
     15 </html>