user.js

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

commit f00cc290b40f5336c6db691808780e2ed7b34ed3
parent 8c3cb3a834d99cf65e53167f738017aa16059d4b
Author: Thorin-Oakenpants <Thorin-Oakenpants@users.noreply.github.com>
Date:   Wed, 26 Jul 2017 23:24:18 +1200

0864: disable form @autocomplete

The default is false in FF54 (and also in FF55 beta), so there should be no downsides. Not sure how this will affect AutoFormFill system addon, and don't care since we'll disable that as well
Diffstat:
Muser.js | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/user.js b/user.js @@ -483,6 +483,10 @@ user_pref("browser.urlbar.oneOffSearches", false); * [1] https://www.ghacks.net/2017/05/24/firefoxs-new-form-autofill-is-awesome/ * [2] https://wiki.mozilla.org/Firefox/Features/Form_Autofill ***/ user_pref("browser.formautofill.enabled", false); +/* 0864: disable form @autocomplete (FF32+) + * [1] https://bugzilla.mozilla.org/show_bug.cgi?id=1009935 + * [2] https://html.spec.whatwg.org/#attr-fe-autocomplete ***/ +user_pref("dom.forms.autocomplete.experimental", false) /* 0870: disable Windows jumplist [WINDOWS] ***/ user_pref("browser.taskbar.lists.enabled", false); user_pref("browser.taskbar.lists.frequent.enabled", false);