tor-browser

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

performance-attribute-sender.html (244B)


      1 <!DOCTYPE HTML>
      2 <html>
      3 <body>
      4 <script>
      5 parent.postMessage([
      6  performance.timing.connectStart,
      7  performance.timing.navigationStart,
      8  performance.timing.secureConnectionStart,
      9  performance.timing.connectEnd
     10 ], '*');
     11 </script>
     12 </body>
     13 </html>