forked from pool/MozillaFirefox
2f02270073
New features: * OpenH264 support (sandboxed) * Enhanced Tiles * Improved search experience through the location bar * Slimmer and faster JavaScript strings * New CSP (Content Security Policy) backend * Support for connecting to HTTP proxy over HTTPS * Improved reliability of the session restoration * Proprietary window.crypto properties/functions removed - requires NSPR 4.10.7 - requires NSS 3.17.1 - removed obsolete patches: * mozilla-ppc.patch * mozilla-libproxy-compat.patch - added basic appdata information OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/MozillaFirefox?expand=0&rev=399
28 lines
1.0 KiB
Diff
28 lines
1.0 KiB
Diff
# HG changeset patch
|
|
# User Wolfgang Rosenauer <wr@rosenauer.org>
|
|
# Parent 39f441dc7ba560595404d47506b0ce70180f99fd
|
|
Do not overwrite the locale dynamic pref from xulrunner's all.js with a wrong default value
|
|
|
|
diff --git a/browser/app/profile/firefox.js b/browser/app/profile/firefox.js
|
|
--- a/browser/app/profile/firefox.js
|
|
+++ b/browser/app/profile/firefox.js
|
|
@@ -259,17 +259,17 @@ pref("browser.uitour.whitelist.add.260",
|
|
pref("browser.uitour.whitelist.add.340", "about:home");
|
|
|
|
pref("browser.customizemode.tip0.shown", false);
|
|
pref("browser.customizemode.tip0.learnMoreUrl", "https://support.mozilla.org/1/firefox/%VERSION%/%OS%/%LOCALE%/customize");
|
|
|
|
pref("keyword.enabled", true);
|
|
pref("browser.fixup.domainwhitelist.localhost", true);
|
|
|
|
-pref("general.useragent.locale", "@AB_CD@");
|
|
+pref("general.useragent.locale", "chrome://global/locale/intl.properties");
|
|
pref("general.skins.selectedSkin", "classic/1.0");
|
|
|
|
pref("general.smoothScroll", true);
|
|
#ifdef UNIX_BUT_NOT_MAC
|
|
pref("general.autoScroll", false);
|
|
#else
|
|
pref("general.autoScroll", true);
|
|
#endif
|