Skip to content

Commit

Permalink
Merge branch 'jb52383' into 'master'
Browse files Browse the repository at this point in the history
Disable unimplement input types by default

See merge request mer-core/gecko-dev!201
  • Loading branch information
rainemak committed Dec 7, 2020
2 parents 7495c75 + adb2bc5 commit 5b64619
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion embedding/embedlite/embedding.js
Expand Up @@ -123,7 +123,14 @@ pref("embedlite.compositor.request_external_gl_context_early", false);
pref("extensions.update.enabled", false);
pref("toolkit.storage.synchronous", 0);
/* new html5 forms */
pref("dom.experimental_forms", true);
// Support for input type=color. By default, disabled.
pref("dom.forms.color", false);
// Support for input type=date and type=time. By default, disabled.
pref("dom.forms.datetime", false);
// Support for input type=month, type=week and type=datetime-local. By default,
// disabled.
pref("dom.forms.datetime.others", false);
pref("dom.experimental_forms", false);
pref("extensions.getAddons.cache.enabled", true);
pref("toolkit.browser.contentViewExpire", 3000);

Expand Down

0 comments on commit 5b64619

Please sign in to comment.