Skip to content

Commit

Permalink
[sailfishos][embedlite] Disable color, date, time, month, week, datet…
Browse files Browse the repository at this point in the history
…ime-local by default. Fixes JB#52383
  • Loading branch information
rainemak committed Dec 7, 2020
1 parent 7495c75 commit adb2bc5
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 adb2bc5

Please sign in to comment.