tor-browser

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

file_bug1326251_evict_cache.html (365B)


      1 <!DOCTYPE html>
      2 <html lang="en">
      3  <head>
      4    <meta charset="utf-8">
      5    <title>Bug 1326251</title>
      6    <script>
      7      // Evict bfcache and then go back.
      8      async function evictCache() {
      9        await SpecialPowers.evictAllDocumentViewers();
     10 
     11        history.back();
     12      }
     13    </script>
     14  </head>
     15  <body onload="setTimeout(evictCache, 0);">
     16  </body>
     17 </html>