Bug 781689 - Fix broken JS code for about:neterror checks. r=mfinkle

This commit is contained in:
Brian Nicholson 2012-09-24 13:16:50 -07:00
Родитель 51af209e69
Коммит 9258a4c9fe
2 изменённых файлов: 1 добавлений и 5 удалений

Просмотреть файл

@ -4213,10 +4213,6 @@ var ErrorPageEventHandler = {
} else if (target == errorDoc.getElementById("getMeOutOfHereButton")) {
errorDoc.location = "about:home";
}
} else if (/^about:neterror\?e=netOffline/.test(ownerDoc.documentURI)) {
let tryAgain = errorDoc.getElementById("errorTryAgain");
if (target == tryAgain)
Services.io.offline = false;
}
break;
}

Просмотреть файл

@ -384,7 +384,7 @@ let Content = {
// http://hg.mozilla.org/mozilla-central/file/855e5cd3c884/browser/base/content/browser.js#l2672
// http://hg.mozilla.org/mozilla-central/file/855e5cd3c884/browser/components/safebrowsing/content/globalstore.js
}
} else if (/^about:neterror\?e=netOffline/.test(ownerDoc.documentURI)) {
} else if (/^about:neterror\?e=netOffline/.test(errorDoc.documentURI)) {
let tryAgain = errorDoc.getElementById("errorTryAgain");
if (target == tryAgain)
sendSyncMessage("Browser:GoOnline", { });