tor-browser

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

file_set_focus_after_reuse_bcg_2.html (475B)


      1 <!DOCTYPE html>
      2 <html lang="en">
      3 <head>
      4    <meta charset="UTF-8">
      5    <meta name="viewport" content="width=device-width, initial-scale=1.0">
      6 </head>
      7 <body>
      8  <h1>Site B</h1>
      9  <button>AddIframe</button>
     10  <iframe></iframe>
     11  <script>
     12    document.querySelector("button").addEventListener("click", function() {
     13      var iframe = document.querySelector("iframe");
     14      iframe.src = "https://example.com/browser/dom/base/test/empty.html";
     15    });
     16  </script>
     17 </body>
     18 </html>