tor-browser

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

010.html (641B)


      1 <!doctype html>
      2 <html>
      3  <head>
      4    <title>history.pushState/replaceState and referer headers (before onload)</title>
      5    <script type="text/javascript" src="/resources/testharness.js"></script>
      6    <script type="text/javascript" src="/resources/testharnessreport.js"></script>
      7  </head>
      8  <body>
      9 
     10    <noscript><p>Enable JavaScript and reload</p></noscript>
     11    <div id="log"></div>
     12    <script type="text/javascript">
     13 setup({explicit_done:true});
     14 var iframe = document.createElement('iframe');
     15 window.onload = function () {
     16  iframe.setAttribute('src','010-1.html');
     17  document.body.appendChild(iframe)
     18 };
     19    </script>
     20 
     21  </body>
     22 </html>