tor-browser

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

test2_bug629331.html (313B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4  </head>
      5  <body>
      6    <script>
      7      document.domain = "example.org";
      8 
      9      for (var j = 1; j <= 9; j++) {
     10        parent.i = j;
     11        var locali = parent.i;
     12        parent.is(locali, j, 'step ' + j + ' worked');
     13      }
     14 
     15      parent.finish();
     16    </script>
     17  </body>
     18 </html>