diff --git a/browser/app/profile/firefox.js b/browser/app/profile/firefox.js index 2b1546417fd..ea56698fa81 100644 --- a/browser/app/profile/firefox.js +++ b/browser/app/profile/firefox.js @@ -877,7 +877,7 @@ pref("browser.ssl_override_behavior", 2); // 0 - do not show domain // 1 - show effectiveTLD + 1 (e.g. mozilla.org) // 2 - show full domain (e.g. bugzilla.mozilla.org) -pref("browser.identity.ssl_domain_display", 1); +pref("browser.identity.ssl_domain_display", 0); // True if the user should be prompted when a web application supports // offline apps. diff --git a/browser/base/content/browser.js b/browser/base/content/browser.js index 20efad0338f..7435e44da18 100644 --- a/browser/base/content/browser.js +++ b/browser/base/content/browser.js @@ -2686,30 +2686,11 @@ function SetPageProxyState(aState) if (aState == "valid") { gLastValidURLStr = gURLBar.value; gURLBar.addEventListener("input", UpdatePageProxyState, false); - - PageProxySetIcon(gBrowser.getIcon()); } else if (aState == "invalid") { gURLBar.removeEventListener("input", UpdatePageProxyState, false); - PageProxyClearIcon(); } } -function PageProxySetIcon (aURL) -{ - if (!gProxyFavIcon) - return; - - if (!aURL) - PageProxyClearIcon(); - else if (gProxyFavIcon.getAttribute("src") != aURL) - gProxyFavIcon.setAttribute("src", aURL); -} - -function PageProxyClearIcon () -{ - gProxyFavIcon.removeAttribute("src"); -} - function PageProxyClickHandler(aEvent) { if (aEvent.button == 1 && gPrefService.getBoolPref("middlemouse.paste")) @@ -4629,11 +4610,6 @@ var XULBrowserWindow = { return "_blank"; }, - onLinkIconAvailable: function (aIconURL) { - if (gProxyFavIcon && gBrowser.userTypedValue === null) - PageProxySetIcon(aIconURL); // update the favicon in the URL bar - }, - onProgressChange: function (aWebProgress, aRequest, aCurSelfProgress, aMaxSelfProgress, aCurTotalProgress, aMaxTotalProgress) { diff --git a/browser/base/content/browser.xul b/browser/base/content/browser.xul index cf58ee89dbf..a1a0b9e876d 100644 --- a/browser/base/content/browser.xul +++ b/browser/base/content/browser.xul @@ -542,9 +542,8 @@ - +