summaryrefslogtreecommitdiffstats
path: root/docshell/test/chrome/bug396519_window.xhtml
diff options
context:
space:
mode:
Diffstat (limited to 'docshell/test/chrome/bug396519_window.xhtml')
-rw-r--r--docshell/test/chrome/bug396519_window.xhtml172
1 files changed, 172 insertions, 0 deletions
diff --git a/docshell/test/chrome/bug396519_window.xhtml b/docshell/test/chrome/bug396519_window.xhtml
new file mode 100644
index 0000000000..557ecfc6df
--- /dev/null
+++ b/docshell/test/chrome/bug396519_window.xhtml
@@ -0,0 +1,172 @@
+<?xml version="1.0"?>
+
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<?xml-stylesheet href="chrome://global/skin" type="text/css"?>
+
+<window id="396519Test"
+ xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
+ width="600"
+ height="600"
+ onload="onLoad();"
+ title="396519 test">
+
+ <script type="application/javascript"><![CDATA[
+ const {BrowserTestUtils} = ChromeUtils.import("resource://testing-common/BrowserTestUtils.jsm");
+ const {Services} = ChromeUtils.import("resource://gre/modules/Services.jsm");
+ Services.prefs.setBoolPref("browser.navigation.requireUserInteraction", false);
+ const LISTEN_EVENTS = ["pageshow"];
+
+ var gBrowser;
+ var gTestCount = 0;
+ var gTestsIterator;
+ var gExpected = [];
+
+ function ok(condition, message) {
+ window.arguments[0].SimpleTest.ok(condition, message);
+ }
+ function is(a, b, message) {
+ window.arguments[0].SimpleTest.is(a, b, message);
+ }
+ function finish() {
+ for (let eventType of LISTEN_EVENTS) {
+ gBrowser.removeEventListener(eventType, eventListener, true);
+ }
+
+ window.close();
+ window.arguments[0].SimpleTest.finish();
+ }
+
+ function onLoad() {
+ gBrowser = document.getElementById("content");
+
+ for (let eventType of LISTEN_EVENTS) {
+ gBrowser.addEventListener(eventType, eventListener, true);
+ }
+
+ gTestsIterator = testsIterator();
+ nextTest();
+ }
+
+ function eventListener(event) {
+ // we're in pageshow, but we need to let that finish
+ // content eviction and saving happen during pageshow, so when doTest
+ // runs, we should should be in a testable state
+ setTimeout(doTest, 0);
+ }
+
+ function doTest() {
+ let history;
+ if (SpecialPowers.Services.appinfo.sessionHistoryInParent) {
+ history = gBrowser.browsingContext.sessionHistory;
+ } else {
+ history = gBrowser.webNavigation.sessionHistory.legacySHistory;
+ }
+
+ if (history.count == gExpected.length) {
+ for (var i=0; i<history.count; i++) {
+ var shEntry = history.getEntryAtIndex(i).
+ QueryInterface(Ci.nsISHEntry);
+ is(!!shEntry.contentViewer, gExpected[i], "content viewer "+i+", test "+gTestCount);
+ }
+
+ // Make sure none of the SHEntries share bfcache entries with one
+ // another.
+ for (var i = 0; i < history.count; i++) {
+ for (var j = 0; j < history.count; j++) {
+ if (j == i)
+ continue;
+
+ let shentry1 = history.getEntryAtIndex(i)
+ .QueryInterface(Ci.nsISHEntry);
+ let shentry2 = history.getEntryAtIndex(j)
+ .QueryInterface(Ci.nsISHEntry);
+ ok(!shentry1.sharesDocumentWith(shentry2),
+ 'Test ' + gTestCount + ': shentry[' + i + "] shouldn't " +
+ "share document with shentry[" + j + ']');
+ }
+ }
+ }
+ else {
+ is(history.count, gExpected.length, "Wrong history length in test "+gTestCount);
+ }
+
+ setTimeout(nextTest, 0);
+ }
+
+ function nextTest() {
+ gTestsIterator.next();
+ }
+
+ function* testsIterator() {
+ // Tests 1 + 2:
+ // Back/forward between two simple documents. Bfcache will be used.
+
+ var test1Doc = "data:text/html,<html><head><title>test1</title></head>" +
+ "<body>test1</body></html>";
+
+ gTestCount++;
+ gExpected = [false];
+ BrowserTestUtils.loadURI(gBrowser, test1Doc);
+ yield undefined;
+
+ gTestCount++;
+ gExpected = [true, false];
+ var test2Doc = test1Doc.replace(/1/,"2");
+ BrowserTestUtils.loadURI(gBrowser, test2Doc);
+ yield undefined;
+
+ gTestCount++;
+ gExpected = [true, true, false];
+ BrowserTestUtils.loadURI(gBrowser, test1Doc);
+ yield undefined;
+
+ gTestCount++;
+ gExpected = [true, true, true, false];
+ BrowserTestUtils.loadURI(gBrowser, test2Doc);
+ yield undefined;
+
+ gTestCount++;
+ gExpected = [false, true, true, true, false];
+ BrowserTestUtils.loadURI(gBrowser, test1Doc);
+ yield undefined;
+
+ gTestCount++;
+ gExpected = [false, false, true, true, true, false];
+ BrowserTestUtils.loadURI(gBrowser, test2Doc);
+ yield undefined;
+
+ gTestCount++;
+ gExpected = [false, false, true, true, false, true];
+ gBrowser.goBack();
+ yield undefined;
+
+ gTestCount++;
+ gExpected = [false, false, true, true, true, false];
+ gBrowser.goForward();
+ yield undefined;
+
+ gTestCount++;
+ gExpected = [false, false, true, true, true, false];
+ gBrowser.gotoIndex(1);
+ yield undefined;
+
+ gTestCount++;
+ gExpected = [false, true, true, true, false, false];
+ gBrowser.goBack();
+ yield undefined;
+
+ gTestCount++;
+ gExpected = [false, false, true, true, false, false];
+ gBrowser.gotoIndex(5);
+ yield undefined;
+
+ Services.prefs.clearUserPref("browser.navigation.requireUserInteraction");
+ finish();
+ }
+ ]]></script>
+
+ <browser type="content" primary="true" flex="1" id="content" src="about:blank"/>
+</window>