tor-browser

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

currentTime-after-discard.html (309B)


      1 <html>
      2 <head>
      3  <title>
      4    Test currentTime after browsing context discard
      5  </title>
      6 </head>
      7 <script>
      8  const frame = document.createElement('frame');
      9  document.documentElement.appendChild(frame);
     10  const ctx = new frame.contentWindow.AudioContext();
     11  frame.remove();
     12  ctx.currentTime;
     13 </script>
     14 </html>