tor-browser

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

test_resource_timing.html (1206B)


      1 <!DOCTYPE html>
      2 <html>
      3    <head>
      4        <meta charset="UTF-8" />
      5        <title>window.performance Resource Timing Entries exist</title>
      6        <link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
      7        <link rel="help" href="https://w3c.github.io/web-performance/specs/ResourceTiming/Overview.html"/>
      8        <script src="/resources/testharness.js"></script>
      9        <script src="/resources/testharnessreport.js"></script>
     10        <script src="test_resource_timing.js"></script>
     11    </head>
     12    <body>
     13        <h1>Description</h1>
     14        <p>
     15           NOTE: Due to caching behavior in the browser, it is possible that when revisiting this page, some resources
     16           may not have to be fetched from the network.  As a result, the performance timeline will not contain entries
     17           for these resources. This test will fail if any entries are missing to ensure that all resources are fetched
     18           from the network and entries for these resources exist in the Performance Timeline.  If revisiting this page,
     19           please either perform a full reload of the page or clear the cache between visits.
     20        </p>
     21 
     22        <div id="log"></div>
     23    </body>
     24 </html>