Bug 1399599 - Disable speculative connections from the Address Bar in Firefox 56. r=ryanvm draft
authorMarco Bonardo <mbonardo@mozilla.com>
Wed, 13 Sep 2017 21:11:26 +0200
changeset 664216 ccf10d472bfa692f65da7ecb53254e5147f7ca51
parent 664215 a085ae94f23a9d659ae09602018a52857ebde86f
child 731384 d68628806e4580124fda0b12edd5d752cfab6838
push id79634
push usermak77@bonardo.net
push dateWed, 13 Sep 2017 19:12:25 +0000
reviewersryanvm
bugs1399599
milestone56.0
Bug 1399599 - Disable speculative connections from the Address Bar in Firefox 56. r=ryanvm MozReview-Commit-ID: 7FcMOTROZ67
browser/app/profile/firefox.js
--- a/browser/app/profile/firefox.js
+++ b/browser/app/profile/firefox.js
@@ -300,17 +300,17 @@ pref("browser.urlbar.clickSelectsAll", t
 pref("browser.urlbar.doubleClickSelectsAll", true);
 #else
 pref("browser.urlbar.doubleClickSelectsAll", false);
 #endif
 
 // Control autoFill behavior
 pref("browser.urlbar.autoFill", true);
 pref("browser.urlbar.autoFill.typed", true);
-pref("browser.urlbar.speculativeConnect.enabled", true);
+pref("browser.urlbar.speculativeConnect.enabled", false);
 
 // 0: Match anywhere (e.g., middle of words)
 // 1: Match on word boundaries and then try matching anywhere
 // 2: Match only on word boundaries (e.g., after / or .)
 // 3: Match at the beginning of the url or title
 pref("browser.urlbar.matchBehavior", 1);
 pref("browser.urlbar.filter.javascript", true);