fa draft
authorjordan9769 <souravgarg833@gmail.com>
Thu, 13 Oct 2016 06:14:25 +0530
changeset 425600 4cdbb1e5a831593146093bac23fac8535955f04b
parent 425599 fbff3c431df9b6d9a2994854e506945e4b13d65e
child 425601 14b53105a15ed88f7b12af357a806c87d79f6d9f
push id32461
push userbmo:souravgarg833@gmail.com
push dateSat, 15 Oct 2016 01:55:59 +0000
milestone52.0a1
fa MozReview-Commit-ID: ExwdegdBP5m
browser/components/preferences/in-content/main.js
--- a/browser/components/preferences/in-content/main.js
+++ b/browser/components/preferences/in-content/main.js
@@ -240,36 +240,36 @@ var gMainPane = {
    *   selected and doesn't change the UI for this preference, the deprecated
    *   option is preserved.
    */
 
   syncFromHomePref: function ()
   {
     let homePref = document.getElementById("browser.startup.homepage");
 
-    // If the pref is set to about:newtab, set the value to "" to show the
-    // placeholder text (about:newtab title).
-    if (homePref.value.toLowerCase() == "about:newtab")
+    // If the pref is set to about:home, set the value to "" to show the
+    // placeholder text (about:home title).
+    if (homePref.value.toLowerCase() == "about:home")
       return "";
 
     // If the pref is actually "", show about:blank.  The actual home page
     // loading code treats them the same, and we don't want the placeholder text
     // to be shown.
     if (homePref.value == "")
       return "about:blank";
 
     // Otherwise, show the actual pref value.
     return undefined;
   },
 
   syncToHomePref: function (value)
   {
-    // If the value is "", use about:newtab.
+    // If the value is "", use about:home.
     if (value == "")
-      return "about:newtab";
+      return "about:home";
 
     // Otherwise, use the actual textbox value.
     return undefined;
   },
 
   /**
    * Sets the home page to the current displayed page (or frontmost tab, if the
    * most recent browser window contains multiple tabs), updating preference