#531: pref CSS error reporting to false except for DEBUG builds

This commit is contained in:
Cameron Kaiser 2018-10-29 20:39:22 -07:00
parent 052586b55c
commit f059d57c07
1 changed files with 4 additions and 0 deletions

View File

@ -2236,7 +2236,11 @@ pref("layout.word_select.stop_at_punctuation", true);
pref("layout.selection.caret_style", 0);
// pref to report CSS errors to the error console
#if DEBUG
pref("layout.css.report_errors", true);
#else
pref("layout.css.report_errors", false);
#endif
// Should the :visited selector ever match (otherwise :link matches instead)?
pref("layout.css.visited_links_enabled", true);