tor-browser

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

sxg-navigation-timing.html (326B)


      1 <!DOCTYPE html>
      2 <title>Navigation timing of SignedHTTPExchange</title>
      3 <script>
      4 window.addEventListener('message', (event) => {
      5  event.data.port.postMessage({
      6      location: document.location.href,
      7      timing: JSON.stringify(performance.getEntriesByType('navigation')[0]),
      8      is_fallback: false});
      9 }, false);
     10 </script>