tor-browser

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

sandbox_corp_popup.html (473B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4  <meta charset="utf-8">
      5  <title>Popup test page</title>
      6 </head>
      7 <body>
      8  <p>Popup Page</p>
      9  <button id="openPopupButton" type="button">Open Popup</button>
     10  <script>
     11    document.getElementById("openPopupButton").addEventListener("click", () => {
     12      window.open(
     13        "https://example.com/browser/browser/base/content/test/about/sandbox_corp_iframe.sjs?error=inner_coop",
     14        "_blank"
     15      );
     16    });
     17  </script>
     18 </body>
     19 </html>