user.js

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit a635ae5dfb0d3b2764c8855ac1ddc1032e07a9f5
parent 02bac31e6af0d73b1f9f71842a5e25460c877d04
Author: Thorin-Oakenpants <Thorin-Oakenpants@users.noreply.github.com>
Date:   Wed, 23 May 2018 08:55:19 +0000

2730 + 2750: Storage API + Offline Cache

https://bugzilla.mozilla.org/show_bug.cgi?id=1450448
Diffstat:
Muser.js | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/user.js b/user.js @@ -1410,7 +1410,7 @@ user_pref("network.cookie.leave-secure-alone", true); // default: true * [WARNING] This *will* break other extensions including legacy, and *will* break some sites ***/ // user_pref("dom.indexedDB.enabled", false); /* 2730: disable offline cache - * [NOTE] This is required 'true' for Storage API (2750) ***/ + * [NOTE] For FF60 and under, this is required 'true' for Storage API (2750) ***/ // user_pref("browser.cache.offline.enable", false); /* 2730b: disable offline cache on insecure sites (FF60+) * [1] https://blog.mozilla.org/security/2018/02/12/restricting-appcache-secure-contexts/ ***/ @@ -1433,7 +1433,7 @@ user_pref("dom.caches.enabled", false); * The API gives sites the ability to find out how much space they can use, how much * they are already using, and even control whether or not they need to be alerted * before the user agent disposes of site data in order to make room for other things. - * [NOTE] If Storage API is enabled, then Offline Cache (2730) must be also be enabled + * [NOTE] For FF60 and under, if Storage API is enabled, then Offline Cache (2730) must be also be enabled * [1] https://developer.mozilla.org/docs/Web/API/StorageManager * [2] https://developer.mozilla.org/docs/Web/API/Storage_API * [3] https://blog.mozilla.org/l10n/2017/03/07/firefox-l10n-report-aurora-54/ ***/