forked from pool/MozillaFirefox
c3624659ef
* Firefox Quantum * Photon UI * Unified address and search bar * AMD VP9 hardware video decoder support * Added support for Date/Time input * stricter security sandbox blocking filesystem reading and writing on Linux systems * middle mouse paste in the content area no longer navigates to URLs by default on Unix systems MFSA 2017-24 * CVE-2017-7828 (bmo#1406750. bmo#1412252) Use-after-free of PressShell while restyling layout * CVE-2017-7830 (bmo#1408990) Cross-origin URL information leak through Resource Timing API * CVE-2017-7831 (bmo#1392026) Information disclosure of exposed properties on JavaScript proxy objects * CVE-2017-7832 (bmo#1408782) Domain spoofing through use of dotless 'i' character followed by accent markers * CVE-2017-7833 (bmo#1370497) Domain spoofing with Arabic and Indic vowel marker characters * CVE-2017-7834 (bmo#1358009) data: URLs opened in new tabs bypass CSP protections * CVE-2017-7835 (bmo#1402363) Mixed content blocking incorrectly applies with redirects * CVE-2017-7836 (bmo#1401339) Pingsender dynamically loads libcurl on Linux and OS X * CVE-2017-7837 (bmo#1325923) OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/MozillaFirefox?expand=0&rev=610
29 lines
1.2 KiB
Diff
29 lines
1.2 KiB
Diff
# HG changeset patch
|
|
# User Wolfgang Rosenauer <wr@rosenauer.org>
|
|
# Parent 099312626f5f7c9cb5573a61d0230574ee12a660
|
|
# Parent 3d1dbfbdfa41b433352fadf3efe4a21cb45a468f
|
|
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
|
|
@@ -219,17 +219,17 @@ pref("browser.uitour.requireSecure", tru
|
|
pref("browser.uitour.themeOrigin", "https://addons.mozilla.org/%LOCALE%/firefox/themes/");
|
|
pref("browser.uitour.url", "https://www.mozilla.org/%LOCALE%/firefox/%VERSION%/tour/");
|
|
// How long to show a Hearbeat survey (two hours, in seconds)
|
|
pref("browser.uitour.surveyDuration", 7200);
|
|
|
|
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
|