Bug 590476 - bustage-fix [r=mbrubeck]

This commit is contained in:
Vivien Nicolas 2010-08-27 01:55:32 +02:00
Родитель 5b4a5608e4
Коммит 4136dda42b
2 изменённых файлов: 12 добавлений и 8 удалений

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

@ -103,13 +103,17 @@
this.onPageShow(aMessage);
if (this.mIconURL == "" && this._documentURI) {
// Use documentURIObject in the favicon construction so that we
// do the right thing with about:-style error pages. Bug 515188
let iconURI = Services.io.newURI(this.documentURI.prePath + "/favicon.ico", null, null);
if (!iconURI.schemeIs("javascript") && !gFaviconService.isFailedFavicon(iconURI)) {
gFaviconService.setAndLoadFaviconForPage(this.currentURI, iconURI, true);
this.mIconURL = iconURI.spec;
// newURI call is throwing for chrome URI
try {
// Use documentURIObject in the favicon construction so that we
// do the right thing with about:-style error pages. Bug 515188
let iconURI = Services.io.newURI(this.documentURI.prePath + "/favicon.ico", null, null);
if (!iconURI.schemeIs("javascript") && !gFaviconService.isFailedFavicon(iconURI)) {
gFaviconService.setAndLoadFaviconForPage(this.currentURI, iconURI, true);
this.mIconURL = iconURI.spec;
}
}
catch(e) {}
}
break;
@ -449,7 +453,7 @@
LOAD_FLAGS_ALLOW_POPUPS: 32768,
LOAD_FLAGS_BYPASS_CLASSIFIER: 65536,
LOAD_FLAGS_FORCE_ALLOW_COOKIES: 131072,
STOP_NETWORK: 1,
STOP_CONTENT: 2,
STOP_ALL: 3,

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

@ -943,7 +943,7 @@ var BrowserUI = {
this._edit.blur();
MenuListHelperUI.show({
title: "TTTTTTTTTTTTTTTTTTTTTTTTTTEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEESSSSSSSSSSSSSSSSSTTTTTTTTTTTT" || Elements.browserBundle.getString("opensearch.searchWith"),
title: Elements.browserBundle.getString("opensearch.searchWith"),
menupopup: { children: BrowserSearch.engines },
set selectedIndex(aIndex) {
let name = this.menupopup.children[aIndex].label;