Make the backspace key behave consistently on all platforms (bug 986982). r?dolske draft
authorPanos Astithas <past@mozilla.com>
Wed, 11 May 2016 10:47:44 +0300
changeset 365689 9b5858ece0cf6f4c580b8962458a8e586f0c8b23
parent 365688 91714307a799b978b0a94911cd99ee75a1de0ac5
child 520627 672e70b75f7d587bd9c92f9d359c2f3cb676b7aa
push id17819
push userbmo:past@mozilla.com
push dateWed, 11 May 2016 09:12:45 +0000
reviewersdolske
bugs986982
milestone49.0a1
Make the backspace key behave consistently on all platforms (bug 986982). r?dolske MozReview-Commit-ID: 5jBLMMYQvFA
browser/app/profile/firefox.js
--- a/browser/app/profile/firefox.js
+++ b/browser/app/profile/firefox.js
@@ -685,21 +685,17 @@ pref("browser.preferences.instantApply",
 
 pref("browser.download.show_plugins_in_list", true);
 pref("browser.download.hide_plugins_without_extensions", true);
 
 // Backspace and Shift+Backspace behavior
 // 0 goes Back/Forward
 // 1 act like PgUp/PgDown
 // 2 and other values, nothing
-#ifdef UNIX_BUT_NOT_MAC
-pref("browser.backspace_action", 2);
-#else
 pref("browser.backspace_action", 0);
-#endif
 
 // this will automatically enable inline spellchecking (if it is available) for
 // editable elements in HTML
 // 0 = spellcheck nothing
 // 1 = check multi-line controls [default]
 // 2 = check multi/single line controls
 pref("layout.spellcheckDefault", 1);