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,6 +103,8 @@
this.onPageShow(aMessage);
if (this.mIconURL == "" && this._documentURI) {
// 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);
@ -111,6 +113,8 @@
this.mIconURL = iconURI.spec;
}
}
catch(e) {}
}
break;
case "pagehide":

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

@ -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;