summaryrefslogtreecommitdiffstats
path: root/docshell/test/navigation/file_bug1326251_evict_cache.html
blob: b9873947f41e59b94cddf69199c4c7e166854522 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <title>Bug 1326251</title>
    <script>
      // Evict bfcache and then go back.
      async function evictCache() {
        await SpecialPowers.evictAllContentViewers();

        history.back();
      }
    </script>
  </head>
  <body onload="setTimeout(evictCache, 0);">
  </body>
</html>