summaryrefslogtreecommitdiffstats
path: root/docshell/test/browser/browser_bug1798780.js
blob: efc0ed9561c6d612638a060874c42961f503efc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

// The test loads an initial page and then another page which does enough
// fragment navigations so that when going back to the initial page and then
// forward to the last page, the initial page is evicted from the bfcache.
add_task(async function testBFCacheEviction() {
  // Make an unrealistic large timeout.
  await SpecialPowers.pushPrefEnv({
    set: [["browser.sessionhistory.contentViewerTimeout", 86400]],
  });

  const uri = "data:text/html,initial page";
  const uri2 =
    getRootDirectory(gTestPath).replace(
      "chrome://mochitests/content",
      "https://example.com"
    ) + "dummy_page.html";

  await BrowserTestUtils.withNewTab(
    { gBrowser, url: uri },
    async function (browser) {
      BrowserTestUtils.loadURIString(browser, uri2);
      await BrowserTestUtils.browserLoaded(browser);

      let awaitPageShow = BrowserTestUtils.waitForContentEvent(
        browser,
        "pageshow"
      );
      await SpecialPowers.spawn(browser, [], async function () {
        content.location.hash = "1";
        content.location.hash = "2";
        content.location.hash = "3";
        content.history.go(-4);
      });

      await awaitPageShow;

      let awaitPageShow2 = BrowserTestUtils.waitForContentEvent(
        browser,
        "pageshow"
      );
      await SpecialPowers.spawn(browser, [], async function () {
        content.history.go(4);
      });
      await awaitPageShow2;
      ok(true, "Didn't time out.");
    }
  );
});