diff options
author | Moonchild <moonchild@palemoon.org> | 2021-01-25 23:18:58 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2021-01-25 23:18:58 +0000 |
commit | 874330d4538bd4704730d57fa35fd678c7d6fbf2 (patch) | |
tree | 3b89c8f0a55a99a90aef812e73966a9e2ba6cbb9 /modules/libpref/init/all.js | |
parent | 1126548deecfd736755f1e1b7e7d551b42e73780 (diff) | |
download | UXP-874330d4538bd4704730d57fa35fd678c7d6fbf2.tar UXP-874330d4538bd4704730d57fa35fd678c7d6fbf2.tar.gz UXP-874330d4538bd4704730d57fa35fd678c7d6fbf2.tar.lz UXP-874330d4538bd4704730d57fa35fd678c7d6fbf2.tar.xz UXP-874330d4538bd4704730d57fa35fd678c7d6fbf2.zip |
Issue #1719 - Make <menuitem> pref-controlled and disable by default.
Resolves #1719
Diffstat (limited to 'modules/libpref/init/all.js')
-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 d53d00a0d..77b1a430c 100644 --- a/modules/libpref/init/all.js +++ b/modules/libpref/init/all.js @@ -4976,6 +4976,9 @@ pref("dom.mozInputMethod.enabled", false); // Enable mapped array buffer by default. pref("dom.mapped_arraybuffer.enabled", true); +// Whether <menuitem> is a thing or not. +pref("dom.menuitem.enabled", false); + #ifdef MOZ_SAFE_BROWSING // The tables used for Safebrowsing phishing and malware checks. pref("urlclassifier.malwareTable", "goog-malware-shavar,goog-unwanted-shavar,test-malware-simple,test-unwanted-simple"); |