forked from pool/MozillaFirefox
ee63deb207
* MFSA 2014-15/CVE-2014-1493/CVE-2014-1494 Miscellaneous memory safety hazards * MFSA 2014-17/CVE-2014-1497 (bmo#966311) Out of bounds read during WAV file decoding * MFSA 2014-18/CVE-2014-1498 (bmo#935618) crypto.generateCRMFRequest does not validate type of key * MFSA 2014-19/CVE-2014-1499 (bmo#961512) Spoofing attack on WebRTC permission prompt * MFSA 2014-20/CVE-2014-1500 (bmo#956524) onbeforeunload and Javascript navigation DOS * MFSA 2014-22/CVE-2014-1502 (bmo#972622) WebGL content injection from one domain to rendering in another * MFSA 2014-23/CVE-2014-1504 (bmo#911547) Content Security Policy for data: documents not preserved by session restore * MFSA 2014-26/CVE-2014-1508 (bmo#963198) Information disclosure through polygon rendering in MathML * MFSA 2014-27/CVE-2014-1509 (bmo#966021) Memory corruption in Cairo during PDF font rendering * MFSA 2014-28/CVE-2014-1505 (bmo#941887) SVG filters information disclosure through feDisplacementMap * MFSA 2014-29/CVE-2014-1510/CVE-2014-1511 (bmo#982906, bmo#982909) Privilege escalation using WebIDL-implemented APIs * MFSA 2014-30/CVE-2014-1512 (bmo#982957) Use-after-free in TypeObject * MFSA 2014-31/CVE-2014-1513 (bmo#982974) Out-of-bounds read/write through neutering ArrayBuffer objects * MFSA 2014-32/CVE-2014-1514 (bmo#983344) Out-of-bounds write through TypedArrayObject after neutering OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/MozillaFirefox?expand=0&rev=370
32 lines
1.6 KiB
Diff
32 lines
1.6 KiB
Diff
From: Wolfgang Rosenauer <wr@rosenauer.org>
|
|
Subject: use system locale if available
|
|
This setting used to live in the branding-openSUSE package but this is causing too much
|
|
confusion and therefore is currently the only setting we switch in the unbranded
|
|
package unconditionally.
|
|
|
|
# HG changeset patch
|
|
# Parent bf7f0353aa8e00b1deaa05b7cb84bb7ea4c9ce8f
|
|
|
|
diff --git a/modules/libpref/src/init/all.js b/modules/libpref/src/init/all.js
|
|
--- a/modules/libpref/src/init/all.js
|
|
+++ b/modules/libpref/src/init/all.js
|
|
@@ -1554,17 +1554,17 @@ pref("intl.charsetmenu.browser.more5",
|
|
pref("intl.charsetmenu.mailedit", "chrome://global/locale/intl.properties");
|
|
pref("intl.charsetmenu.browser.cache", "");
|
|
pref("intl.charsetmenu.mailview.cache", "");
|
|
pref("intl.charsetmenu.composer.cache", "");
|
|
pref("intl.charsetmenu.browser.cache.size", 5);
|
|
pref("intl.charset.detector", "chrome://global/locale/intl.properties");
|
|
pref("intl.charset.fallback.override", "");
|
|
pref("intl.ellipsis", "chrome://global-platform/locale/intl.properties");
|
|
-pref("intl.locale.matchOS", false);
|
|
+pref("intl.locale.matchOS", true);
|
|
// fallback charset list for Unicode conversion (converting from Unicode)
|
|
// currently used for mail send only to handle symbol characters (e.g Euro, trademark, smartquotes)
|
|
// for ISO-8859-1
|
|
pref("intl.fallbackCharsetList.ISO-8859-1", "windows-1252");
|
|
pref("font.language.group", "chrome://global/locale/intl.properties");
|
|
|
|
// these locales have right-to-left UI
|
|
pref("intl.uidirection.ar", "rtl");
|