tor-browser

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

test_navigation_timing.html (684B)


      1 <!--
      2  Any copyright is dedicated to the Public Domain.
      3  http://creativecommons.org/publicdomain/zero/1.0/
      4 -->
      5 
      6 <!DOCTYPE HTML>
      7 <html>
      8 <!--
      9 https://bugzilla.mozilla.org/show_bug.cgi?id=822480
     10 -->
     11 <head>
     12  <script src="/tests/SimpleTest/SimpleTest.js"></script>
     13  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
     14 </head>
     15 <body>
     16 
     17 <pre id="test">
     18 <script type="application/javascript">
     19 
     20 var subwindow = null;
     21 
     22 window.onload = function() {
     23  SimpleTest.waitForExplicitFinish();
     24  subwindow = window.open("navigation_timing.html?x=0#_blank", "_blank");
     25 }
     26 
     27 function finishTests() {
     28  subwindow.close();
     29  SimpleTest.finish();
     30 }
     31 
     32 </script>
     33 </pre>
     34 
     35 </body>
     36 </html>