user.js

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

commit d04ff8457e49877ed8e5f50fffde57a9af3e1e3d
parent c6e3c013e0c223b77e821aef231dd4240a408dfe
Author: Thorin-Oakenpants <Thorin-Oakenpants@users.noreply.github.com>
Date:   Thu, 12 Apr 2018 17:38:22 +0000

2730b: disable appCache on insecure sites FF60+
Diffstat:
Muser.js | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/user.js b/user.js @@ -1422,6 +1422,9 @@ user_pref("network.cookie.leave-secure-alone", true); // default: true /* 2730: disable offline cache * [NOTE] 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/ ***/ +user_pref("browser.cache.offline.insecure.enable", false); /* 2731: enforce websites to ask to store data for offline use * [1] https://support.mozilla.org/questions/1098540 * [2] https://bugzilla.mozilla.org/959985 ***/