Bug 1357482 - Disable editor.use_div_for_default_newlines for beta and later; r?masayuki draft
authorAryeh Gregor <ayg@aryeh.name>
Tue, 18 Apr 2017 20:25:50 +0300
changeset 564510 cb15b74f13e8bead4019dc87f936d9e42552a14f
parent 564200 8e40c4e9db845a608bd1c63bde797e11d5d1227e
child 624760 d1bd1ac51539e1e3456e6f5e40ecb58ff1d2e8c8
push id54622
push userbmo:ayg@aryeh.name
push dateTue, 18 Apr 2017 17:29:00 +0000
reviewersmasayuki
bugs1357482
milestone55.0a1
Bug 1357482 - Disable editor.use_div_for_default_newlines for beta and later; r?masayuki Per discussion on dev.platform, this is risk-prone, and we want more time baking on nightlies and early betas to see if it causes problems. MozReview-Commit-ID: CaprjWxYfbC
modules/libpref/init/all.js
--- a/modules/libpref/init/all.js
+++ b/modules/libpref/init/all.js
@@ -1146,17 +1146,21 @@ pref("extensions.spellcheck.inline.max-m
 // belong in comm-central/editor/ui/composer.js
 
 pref("editor.use_custom_colors", false);
 pref("editor.singleLine.pasteNewlines",      2);
 pref("editor.use_css",                       false);
 pref("editor.css.default_length_unit",       "px");
 pref("editor.resizing.preserve_ratio",       true);
 pref("editor.positioning.offset",            0);
+#ifdef EARLY_BETA_OR_EARLIER
 pref("editor.use_div_for_default_newlines",  true);
+#else
+pref("editor.use_div_for_default_newlines",  false);
+#endif
 
 // Scripts & Windows prefs
 pref("dom.disable_beforeunload",            false);
 pref("dom.disable_window_flip",             false);
 pref("dom.disable_window_move_resize",      false);
 pref("dom.disable_window_status_change",    false);
 
 pref("dom.disable_window_open_feature.titlebar",    false);