tor-browser

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

navigation-timing-trickle.https.html (550B)


      1 <!DOCTYPE html>
      2 <head>
      3    <meta charset='utf-8' />
      4    <script src="/resources/testharness.js"></script>
      5    <script src="/resources/testharnessreport.js"></script>
      6    <script>
      7      setup({explicit_done: true})
      8      window.addEventListener("message", e => {
      9        test(() => {
     10          assert_equals(e.data, "PASS", "The iframe saw ServerTiming entries in its NavigationTiming entry.");
     11          done();
     12        })
     13      });
     14    </script>
     15 </head>
     16 <body>
     17 <iframe src="resources/navigation-timing.html?pipe=trickle(800:d1)"></iframe>
     18 </body>