summaryrefslogtreecommitdiffstats
path: root/browser/base/content/test/general/browser_purgehistory_clears_sh.js
blob: 1a1e6554d71f092cb23725bbc1a1fc063906a267 (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
53
54
55
56
57
58
59
60
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

const url = "http://example.org/browser/browser/base/content/test/general/dummy_page.html";

add_task(function* purgeHistoryTest() {
  yield BrowserTestUtils.withNewTab({
    gBrowser,
    url,
  }, function* purgeHistoryTestInner(browser) {
    let backButton = browser.ownerDocument.getElementById("Browser:Back");
    let forwardButton = browser.ownerDocument.getElementById("Browser:Forward");

    ok(!browser.webNavigation.canGoBack,
       "Initial value for webNavigation.canGoBack");
    ok(!browser.webNavigation.canGoForward,
       "Initial value for webNavigation.canGoBack");
    ok(backButton.hasAttribute("disabled"), "Back button is disabled");
    ok(forwardButton.hasAttribute("disabled"), "Forward button is disabled");

    yield ContentTask.spawn(browser, null, function*() {
      let startHistory = content.history.length;
      content.history.pushState({}, "");
      content.history.pushState({}, "");
      content.history.back();
      let newHistory = content.history.length;
      Assert.equal(startHistory, 1, "Initial SHistory size");
      Assert.equal(newHistory, 3, "New SHistory size");
    });

    ok(browser.webNavigation.canGoBack, true,
       "New value for webNavigation.canGoBack");
    ok(browser.webNavigation.canGoForward, true,
       "New value for webNavigation.canGoForward");
    ok(!backButton.hasAttribute("disabled"), "Back button was enabled");
    ok(!forwardButton.hasAttribute("disabled"), "Forward button was enabled");


    let tmp = {};
    Cc["@mozilla.org/moz/jssubscript-loader;1"]
      .getService(Ci.mozIJSSubScriptLoader)
      .loadSubScript("chrome://browser/content/sanitize.js", tmp);

    let {Sanitizer} = tmp;
    let sanitizer = new Sanitizer();

    yield sanitizer.sanitize(["history"]);

    yield ContentTask.spawn(browser, null, function*() {
      Assert.equal(content.history.length, 1, "SHistory correctly cleared");
    });

    ok(!browser.webNavigation.canGoBack,
       "webNavigation.canGoBack correctly cleared");
    ok(!browser.webNavigation.canGoForward,
       "webNavigation.canGoForward correctly cleared");
    ok(backButton.hasAttribute("disabled"), "Back button was disabled");
    ok(forwardButton.hasAttribute("disabled"), "Forward button was disabled");
  });
});