Keep about:blank from showing up in the urlbar if it's the first page in session history. r=lumpy, sr=jack

This commit is contained in:
jaggernaut%netscape.com 2006-09-14 06:06:53 +00:00
Родитель 03b56a8eac
Коммит a62d6a2f57
1 изменённых файлов: 2 добавлений и 7 удалений

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

@ -73,8 +73,6 @@ nsBrowserStatusHandler.prototype =
jsDefaultStatus : "",
overLink : "",
hideAboutBlank : true,
QueryInterface : function(aIID)
{
if (aIID.equals(Components.interfaces.nsIWebProgressListener) ||
@ -301,11 +299,8 @@ nsBrowserStatusHandler.prototype =
}
}
if (this.hideAboutBlank) {
this.hideAboutBlank = false;
if (location == "about:blank")
location = "";
}
if (!getWebNavigation().canGoBack && location == "about:blank")
location = "";
// Disable menu entries for images, enable otherwise
if (content.document && this.mimeTypeIsTextBased(content.document.contentType))