tor-browser

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

timing-attack.html (672B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta charset="utf-8" />
      5 <title>window.performance.now should not enable timing attacks</title>
      6 <link rel="author" title="W3C" href="http://www.w3.org/" />
      7 <link rel="help" href="http://w3c.github.io/hr-time/#privacy-security"/>
      8 <script src="/resources/testharness.js"></script>
      9 <script src="/resources/testharnessreport.js"></script>
     10 <script src="resources/timing-attack.js"></script>
     11 <script>
     12 run_test(/*isolated=*/false);
     13 </script>
     14 </head>
     15 <body>
     16 <h1>Description</h1>
     17 <p>The recommended minimum resolution of the Performance interface should be set to 100 microseconds for non-isolated contexts.</p>
     18 
     19 <div id="log"></div>
     20 
     21 </body>
     22 </html>