зеркало из https://github.com/mozilla/pjs.git
195833 - js error in onLocationChange when trying to get hostPort if there isn't one. r=jag, sr=bzbarsky
This commit is contained in:
Родитель
af511c605b
Коммит
52add5f17e
|
@ -294,7 +294,8 @@ nsBrowserStatusHandler.prototype =
|
|||
{
|
||||
this.setOverLink("");
|
||||
|
||||
var location = "";
|
||||
var locationURI = null;
|
||||
var location = "";
|
||||
|
||||
if (aLocation) {
|
||||
try {
|
||||
|
@ -304,7 +305,9 @@ nsBrowserStatusHandler.prototype =
|
|||
// If the url has "wyciwyg://" as the protocol, strip it off.
|
||||
// Nobody wants to see it on the urlbar for dynamically generated
|
||||
// pages.
|
||||
location = gURIFixup.createExposableURI(aLocation).spec;
|
||||
locationURI = gURIFixup.createExposableURI(aLocation);
|
||||
location = locationURI.spec;
|
||||
|
||||
}
|
||||
catch(ex) {
|
||||
location = aLocation.spec;
|
||||
|
@ -344,12 +347,21 @@ nsBrowserStatusHandler.prototype =
|
|||
|
||||
//clear popupDomain accordingly so that icon will go away when visiting
|
||||
//an unblocked site after a blocked site. note: if a popup is blocked
|
||||
//the icon will stay as long as we are in the same domain.
|
||||
//the icon will stay as long as we are in the same domain.
|
||||
|
||||
if (blank ||
|
||||
!("popupDomain" in browser) ||
|
||||
aLocation.hostPort != browser.popupDomain) {
|
||||
!("popupDomain" in browser)) {
|
||||
browser.popupDomain = null;
|
||||
}
|
||||
else {
|
||||
var hostPort = "";
|
||||
try {
|
||||
hostPort = locationURI.hostPort;
|
||||
}
|
||||
catch(ex) { }
|
||||
if (hostPort != browser.popupDomain)
|
||||
browser.popupDomain = null;
|
||||
}
|
||||
|
||||
var popupIcon = document.getElementById("popupIcon");
|
||||
popupIcon.hidden = !browser.popupDomain;
|
||||
|
|
Загрузка…
Ссылка в новой задаче