diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-10-29 22:41:12 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-10-29 22:41:12 +0100 |
commit | 2269daa8ffbf5685a68db3f104344ab29a79706f (patch) | |
tree | 453e767ab0793436edf1959aa608c03673efb161 /modules/libpref | |
parent | 5f1532bab5b59d92d2572d5b6e4a58e135033e34 (diff) | |
download | uxp-2269daa8ffbf5685a68db3f104344ab29a79706f.tar.gz |
Set CSS error console reporting default to false for performance.
Dev note needed upon release. This resolves #444.
Diffstat (limited to 'modules/libpref')
-rw-r--r-- | modules/libpref/init/all.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/libpref/init/all.js b/modules/libpref/init/all.js index f7bef942f4..957affa795 100644 --- a/modules/libpref/init/all.js +++ b/modules/libpref/init/all.js @@ -2438,7 +2438,7 @@ pref("layout.word_select.stop_at_punctuation", true); pref("layout.selection.caret_style", 0); // pref to report CSS errors to the error console -pref("layout.css.report_errors", true); +pref("layout.css.report_errors", false); // Should the :visited selector ever match (otherwise :link matches instead)? pref("layout.css.visited_links_enabled", true); |