Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mozilla/geckodriver.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSven Jost <sven@wire.com>2016-07-01 15:40:01 +0300
committerSven Jost <sven@wire.com>2016-07-01 15:40:01 +0300
commit4d70ef2ad60b3cbd85ebc0ef8fa78253049d3fa4 (patch)
tree8d333836e88ef3c2f8fb478627debde79fbce5bb /src
parenta7ddb25e9a02f4856c2ee732079ad8ad19156c99 (diff)
Disable autofill of forms by default
Diffstat (limited to 'src')
-rw-r--r--src/marionette.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/marionette.rs b/src/marionette.rs
index ce750fd..055cccf 100644
--- a/src/marionette.rs
+++ b/src/marionette.rs
@@ -66,7 +66,7 @@ lazy_static! {
("browser.tabs.remote.autostart.2", Pref::new(false)),
];
- pub static ref FIREFOX_DEFAULT_PREFERENCES: [(&'static str, Pref); 44] = [
+ pub static ref FIREFOX_DEFAULT_PREFERENCES: [(&'static str, Pref); 45] = [
("app.update.auto", Pref::new(false)),
("app.update.enabled", Pref::new(false)),
("browser.displayedE10SPrompt.1", Pref::new(5)),
@@ -105,6 +105,7 @@ lazy_static! {
("security.warn_submit_insecure", Pref::new(false)),
("security.warn_viewing_mixed", Pref::new(false)),
("security.warn_viewing_mixed.show_once", Pref::new(false)),
+ ("signon.autofillForms", Pref::new(false)),
("signon.rememberSignons", Pref::new(false)),
("startup.homepage_welcome_url", Pref::new("about:blank")),
("toolkit.networkmanager.disable", Pref::new(true)),