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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
|
<?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="364461Test"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
width="600"
height="600"
onload="runTest();"
title="364461 test">
<script src="chrome://mochikit/content/chrome-harness.js" />
<script type="application/javascript" src="docshell_helpers.js" />
<script type="application/javascript"><![CDATA[
Services.prefs.setBoolPref("browser.navigation.requireUserInteraction", false);
var gBrowser;
async function runTest() {
gBrowser = document.getElementById("content");
// 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>";
await promisePageNavigation({
uri: test1Doc,
eventsToListenFor: ["load", "pageshow"],
expectedEvents: [{type: "load", title: "test1"},
{type: "pageshow", title: "test1", persisted: false}],
});
var test2Doc = "data:text/html,<html><head><title>test2</title></head>" +
"<body>test2</body></html>";
await promisePageNavigation({
uri: test2Doc,
eventsToListenFor: ["load", "pageshow", "pagehide"],
expectedEvents: [{type: "pagehide", title: "test1", persisted: true},
{type: "load", title: "test2"},
{type: "pageshow", title: "test2", persisted: false}],
});
await promisePageNavigation({
back: true,
eventsToListenFor: ["pageshow", "pagehide"],
expectedEvents: [{type: "pagehide", title: "test2", persisted: true},
{type: "pageshow", title: "test1", persisted: true}],
});
await promisePageNavigation({
forward: true,
eventsToListenFor: ["pageshow", "pagehide"],
expectedEvents: [{type: "pagehide", title: "test1", persisted: true},
{type: "pageshow", title: "test2", persisted: true}],
});
// Tests 3 + 4:
// Back/forward between a two-level deep iframed document and a simple
// document. Bfcache will be used and events should be dispatched to
// all frames.
var test3Doc = "data:text/html,<html><head><title>test3</title>" +
"</head><body>" +
"<iframe src='data:text/html," +
"<html><head><title>test3-nested1</title></head>" +
"<body>test3-nested1" +
"<iframe src=\"data:text/html," +
"<html><head><title>test3-nested2</title></head>" +
"<body>test3-nested2</body></html>\">" +
"</iframe>" +
"</body></html>'>" +
"</iframe>" +
"</body></html>";
await promisePageNavigation({
uri: test3Doc,
eventsToListenFor: ["load", "pageshow", "pagehide"],
expectedEvents: [{type: "pagehide", title: "test2", persisted: true},
{type: "load", title: "test3-nested2"},
{type: "pageshow", title: "test3-nested2", persisted: false},
{type: "load", title: "test3-nested1"},
{type: "pageshow", title: "test3-nested1", persisted: false},
{type: "load", title: "test3"},
{type: "pageshow", title: "test3", persisted: false}],
});
var test4Doc = "data:text/html,<html><head><title>test4</title></head>" +
"<body>test4</body></html>";
await promisePageNavigation({
uri: test4Doc,
eventsToListenFor: ["load", "pageshow", "pagehide"],
expectedEvents: [{type: "pagehide", title: "test3", persisted: true},
{type: "pagehide", title: "test3-nested1", persisted: true},
{type: "pagehide", title: "test3-nested2", persisted: true},
{type: "load", title: "test4"},
{type: "pageshow", title: "test4", persisted: false}],
});
await promisePageNavigation({
back: true,
eventsToListenFor: ["pageshow", "pagehide"],
expectedEvents: [{type: "pagehide", title: "test4", persisted: true},
{type: "pageshow", title: "test3-nested2", persisted: true},
{type: "pageshow", title: "test3-nested1", persisted: true},
{type: "pageshow", title: "test3", persisted: true}],
});
// This is where the two nested pagehide are not dispatched in bug 364461
await promisePageNavigation({
forward: true,
eventsToListenFor: ["pageshow", "pagehide"],
expectedEvents: [{type: "pagehide", title: "test3", persisted: true},
{type: "pagehide", title: "test3-nested1", persisted: true},
{type: "pagehide", title: "test3-nested2", persisted: true},
{type: "pageshow", title: "test4", persisted: true}],
});
// Tests 5 + 6:
// Back/forward between a document containing an unload handler and a
// a simple document. Bfcache won't be used for the first one (see
// http://developer.mozilla.org/en/docs/Using_Firefox_1.5_caching).
var test5Doc = "data:text/html,<html><head><title>test5</title></head>" +
"<body onunload='while(false) { /* nop */ }'>" +
"test5</body></html>";
await promisePageNavigation({
uri: test5Doc,
eventsToListenFor: ["load", "pageshow", "pagehide"],
expectedEvents: [{type: "pagehide", title: "test4", persisted: true},
{type: "load", title: "test5"},
{type: "pageshow", title: "test5", persisted: false}],
});
var test6Doc = "data:text/html,<html><head><title>test6</title></head>" +
"<body>test6</body></html>";
await promisePageNavigation({
uri: test6Doc,
eventsToListenFor: ["load", "unload", "pageshow", "pagehide"],
expectedEvents: [{type: "pagehide", title: "test5", persisted: false},
{type: "unload", title: "test5"},
{type: "load", title: "test6"},
{type: "pageshow", title: "test6", persisted: false}],
});
await promisePageNavigation({
back: true,
eventsToListenFor: ["load", "pageshow", "pagehide"],
expectedEvents: [{type: "pagehide", title: "test6", persisted: true},
{type: "load", title: "test5"},
{type: "pageshow", title: "test5", persisted: false}],
});
await promisePageNavigation({
forward: true,
eventsToListenFor: ["unload", "pageshow", "pagehide"],
expectedEvents: [{type: "pagehide", title: "test5", persisted: false},
{type: "unload", title: "test5"},
{type: "pageshow", title: "test6", persisted: true}],
});
// Test 7:
// Testcase from https://bugzilla.mozilla.org/show_bug.cgi?id=384977#c10
// Check that navigation is not blocked after a document is restored
// from bfcache
var test7Doc = "data:text/html,<html><head><title>test7</title>" +
"</head><body>" +
"<iframe src='data:text/html," +
"<html><head><title>test7-nested1</title></head>" +
"<body>test7-nested1<br/>" +
"<a href=\"data:text/plain,aaa\" target=\"_top\">" +
"Click me, hit back, click me again</a>" +
"</body></html>'>" +
"</iframe>" +
"</body></html>";
await promisePageNavigation({
uri: test7Doc,
eventsToListenFor: ["load", "pageshow", "pagehide"],
expectedEvents: [{type: "pagehide", title: "test6", persisted: true},
{type: "load", title: "test7-nested1"},
{type: "pageshow", title: "test7-nested1", persisted: false},
{type: "load", title: "test7"},
{type: "pageshow", title: "test7", persisted: false}],
});
// Simulates a click on the link inside the iframe
function clickIframeLink() {
SpecialPowers.spawn(TestWindow.getBrowser(), [], () => {
var iframe = content.document.getElementsByTagName("iframe")[0];
var w = iframe.contentWindow;
var d = iframe.contentDocument;
var evt = d.createEvent("MouseEvents");
evt.initMouseEvent("click", true, true, w,
0, 0, 0, 0, 0, false, false, false, false, 0, null);
d.getElementsByTagName("a")[0].dispatchEvent(evt);
});
}
let clicked = promisePageNavigation({
eventsToListenFor: ["load", "pageshow", "pagehide"],
expectedEvents: [{type: "pagehide", title: "test7", persisted: true},
{type: "pagehide", title: "test7-nested1", persisted: true},
{type: "load"},
{type: "pageshow", persisted: false}],
waitForEventsOnly: true,
});
clickIframeLink();
await clicked;
is(gBrowser.currentURI.spec, "data:text/plain,aaa",
"Navigation is blocked when clicking link");
await promisePageNavigation({
back: true,
eventsToListenFor: ["pageshow", "pagehide"],
expectedEvents: [{type: "pagehide", persisted: true},
{type: "pageshow", title: "test7-nested1", persisted: true},
{type: "pageshow", title: "test7", persisted: true}],
});
clicked = promisePageNavigation({
eventsToListenFor: ["load", "pageshow", "pagehide"],
expectedEvents: [{type: "pagehide", title: "test7", persisted: true},
{type: "pagehide", title: "test7-nested1", persisted: true},
{type: "load"},
{type: "pageshow", persisted: false}],
waitForEventsOnly: true,
});
clickIframeLink();
await clicked;
is(gBrowser.currentURI.spec, "data:text/plain,aaa",
"Navigation is blocked when clicking link");
Services.prefs.clearUserPref("browser.navigation.requireUserInteraction");
finish();
}
]]></script>
<browser type="content" primary="true" flex="1" id="content" remote="true" maychangeremoteness="true" />
</window>
|