diff options
author | Martok <martok@martoks-place.de> | 2022-11-27 16:35:46 +0100 |
---|---|---|
committer | Martok <martok@martoks-place.de> | 2022-11-27 16:35:47 +0100 |
commit | 41fed1ebf882524a33d9bb8188a5c6ca013a26f9 (patch) | |
tree | 1c65270480b0509313dd31397875cb57f78e93c6 /modules | |
parent | a585aeacf074187bdc0073aeaa08cdabb65fab38 (diff) | |
download | uxp-41fed1ebf882524a33d9bb8188a5c6ca013a26f9.tar.gz |
Issue #2030 - Pref-gate default button event dispatch logic
Diffstat (limited to 'modules')
-rw-r--r-- | modules/libpref/init/all.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/libpref/init/all.js b/modules/libpref/init/all.js index 5a3f81e376..c2603f87fd 100644 --- a/modules/libpref/init/all.js +++ b/modules/libpref/init/all.js @@ -1177,6 +1177,9 @@ pref("dom.forms.datetime.timepicker", false); // TODO: implement/fix these. pref("dom.forms.datetime.others", false); +// <button> elements are opaque to pointer events. +pref("dom.forms.button.standards_compliant", true); + // Support for new @autocomplete values pref("dom.forms.autocomplete.experimental", false); |