зеркало из https://github.com/mozilla/pjs.git
Bug 715198 - browser is loading compressed data directly to the page, r=Josh Aas
--HG-- extra : rebase_source : e700c1427bae274fdc6882def455345c24c8064d
This commit is contained in:
Родитель
07fb70e23f
Коммит
1efcf06d29
|
@ -108,6 +108,9 @@ pref("browser.cache.offline.capacity", 5120); // kilobytes
|
||||||
pref("offline-apps.quota.max", 2048); // kilobytes
|
pref("offline-apps.quota.max", 2048); // kilobytes
|
||||||
pref("offline-apps.quota.warn", 1024); // kilobytes
|
pref("offline-apps.quota.warn", 1024); // kilobytes
|
||||||
|
|
||||||
|
// cache compression turned off for now - see bug #715198
|
||||||
|
pref("browser.cache.compression_level", 0);
|
||||||
|
|
||||||
/* protocol warning prefs */
|
/* protocol warning prefs */
|
||||||
pref("network.protocol-handler.warn-external.tel", false);
|
pref("network.protocol-handler.warn-external.tel", false);
|
||||||
pref("network.protocol-handler.warn-external.mailto", false);
|
pref("network.protocol-handler.warn-external.mailto", false);
|
||||||
|
|
|
@ -106,8 +106,8 @@ pref("browser.cache.offline.capacity", 5120); // kilobytes
|
||||||
pref("offline-apps.quota.max", 2048); // kilobytes
|
pref("offline-apps.quota.max", 2048); // kilobytes
|
||||||
pref("offline-apps.quota.warn", 1024); // kilobytes
|
pref("offline-apps.quota.warn", 1024); // kilobytes
|
||||||
|
|
||||||
/* zlib compression level used for cache compression */
|
// cache compression turned off for now - see bug #715198
|
||||||
pref("browser.cache.compression_level", 1);
|
pref("browser.cache.compression_level", 0);
|
||||||
|
|
||||||
/* protocol warning prefs */
|
/* protocol warning prefs */
|
||||||
pref("network.protocol-handler.warn-external.tel", false);
|
pref("network.protocol-handler.warn-external.tel", false);
|
||||||
|
|
|
@ -96,7 +96,8 @@ pref("offline-apps.quota.warn", 51200);
|
||||||
// 0 => disable compression
|
// 0 => disable compression
|
||||||
// 1 => best speed
|
// 1 => best speed
|
||||||
// 9 => best compression
|
// 9 => best compression
|
||||||
pref("browser.cache.compression_level", 5);
|
// cache compression turned off for now - see bug #715198
|
||||||
|
pref("browser.cache.compression_level", 0);
|
||||||
|
|
||||||
// Whether or not indexedDB is enabled.
|
// Whether or not indexedDB is enabled.
|
||||||
pref("dom.indexedDB.enabled", true);
|
pref("dom.indexedDB.enabled", true);
|
||||||
|
|
Загрузка…
Ссылка в новой задаче