tor-browser

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

choose-default-002-iframe.html (420B)


      1 <!DOCTYPE html>
      2 <html>
      3 <meta charset="utf-8">
      4 <title>HTML Test: browsing context name - Empty string</title>
      5 <link rel="author" title="Intel" href="http://www.intel.com/">
      6 <body onload="followLink()">
      7 </body>
      8 <script>
      9 function followLink() {
     10  var a = document.createElement('a');
     11  a.href = 'post-to-top.html';
     12  a.target = ''; // Target is empty string
     13  document.body.appendChild(a);
     14  a.click();
     15 }
     16 </script>
     17 </html>