mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
1895527d8c
--HG-- extra : rebase_source : 1158df4a4eb917074204e649efd8f2b8e699f115
83 lines
2.2 KiB
HTML
83 lines
2.2 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>Test bug 529119</title>
|
|
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
|
|
|
<script class="testbody" type="text/javascript">
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
var workingURL = "http://mochi.test:8888/tests/docshell/test/bug529119-window.html";
|
|
var faultyURL = "http://some-nonexistent-domain-27489274c892748217cn2384.com/";
|
|
|
|
var w = null;
|
|
var phase = 0;
|
|
|
|
function pollForPage(expectErrorPage, f, w)
|
|
{
|
|
// Start with polling after a delay, we might mistakenly take the current page
|
|
// as an expected one.
|
|
window.setTimeout(function() {
|
|
var iterationsLeft = 200;
|
|
var int = window.setInterval(function() {
|
|
iterationsLeft--;
|
|
|
|
var haveErrorPage = false;
|
|
try {
|
|
var title = w.document.title;
|
|
}
|
|
catch (ex) {
|
|
haveErrorPage = true;
|
|
}
|
|
|
|
if (iterationsLeft == 0 || expectErrorPage == haveErrorPage) {
|
|
window.clearInterval(int);
|
|
f(iterationsLeft > 0);
|
|
}
|
|
}, 100);
|
|
}, 1000);
|
|
}
|
|
|
|
function windowLoaded()
|
|
{
|
|
/* 2. We have successfully loaded a page, now go to a faulty URL */
|
|
// XXX The test fails when we change the location synchronously
|
|
window.setTimeout(function() {
|
|
w.location.href = faultyURL;
|
|
}, 0);
|
|
|
|
pollForPage(true, function(succeeded) {
|
|
ok(succeeded, "Waiting for error page succeeded");
|
|
/* 3. now, while we are on the error page, navigate back */
|
|
try {
|
|
SpecialPowers.wrap(w).back();
|
|
}
|
|
catch(ex) {
|
|
ok(false, "w.back() threw " + ex);
|
|
}
|
|
|
|
pollForPage(false, function(succeeded) {
|
|
ok(succeeded, "Waiting for original page succeeded");
|
|
/* 4-finish, check we are back at the original page */
|
|
isnot(SpecialPowers.wrap(w).location.href, faultyURL, "Is on an error page");
|
|
is(SpecialPowers.wrap(w).location.href, workingURL, "Is not on the previous page");
|
|
w.close();
|
|
SimpleTest.finish();
|
|
}, w);
|
|
}, w);
|
|
}
|
|
|
|
function startTest()
|
|
{
|
|
/* 1. load a URL that leads to an error page */
|
|
w = window.open(workingURL);
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body onload="startTest();">
|
|
</body>
|
|
</html>
|