Bug 1280251 - Remove leftover references to unifiedComplete pref. r=past draft
authorMarco Bonardo <mbonardo@mozilla.com>
Thu, 16 Jun 2016 15:06:07 +0100
changeset 379628 579d95b007a9712a0247406d7ec0b4f6dec699ef
parent 379627 13bdb28018357af151edadbb3f76a474ff00ec07
child 523535 1e9527d143183a4699dcc47a0a6e3abcbaa5a467
push id21015
push usermak77@bonardo.net
push dateThu, 16 Jun 2016 14:09:09 +0000
reviewerspast
bugs1280251
milestone50.0a1
Bug 1280251 - Remove leftover references to unifiedComplete pref. r=past MozReview-Commit-ID: 9GQ6u7V6tKs
browser/base/content/test/urlbar/browser_autocomplete_a11y_label.js
browser/base/content/test/urlbar/browser_urlbarDelete.js
--- a/browser/base/content/test/urlbar/browser_autocomplete_a11y_label.js
+++ b/browser/base/content/test/urlbar/browser_autocomplete_a11y_label.js
@@ -1,12 +1,11 @@
 /* Any copyright is dedicated to the Public Domain.
  * http://creativecommons.org/publicdomain/zero/1.0/ */
 
-const UNIFIEDCOMPLETE_PREF = "browser.urlbar.unifiedcomplete";
 const SUGGEST_ALL_PREF = "browser.search.suggest.enabled";
 const SUGGEST_URLBAR_PREF = "browser.urlbar.suggest.searches";
 const TEST_ENGINE_BASENAME = "searchSuggestionEngine.xml";
 
 add_task(function* switchToTab() {
   let tab = gBrowser.addTab("about:about");
   yield promiseTabLoaded(tab);
 
--- a/browser/base/content/test/urlbar/browser_urlbarDelete.js
+++ b/browser/base/content/test/urlbar/browser_urlbarDelete.js
@@ -2,17 +2,16 @@ add_task(function*() {
   let bm = yield PlacesUtils.bookmarks.insert({ parentGuid: PlacesUtils.bookmarks.unfiledGuid,
                                                 url: "http://bug1105244.example.com/",
                                                 title: "test" });
 
   registerCleanupFunction(function* () {
     yield PlacesUtils.bookmarks.remove(bm);
   });
 
-  Services.prefs.setBoolPref("browser.urlbar.unifiedcomplete", true);
   yield BrowserTestUtils.withNewTab({ gBrowser, url: "about:blank" }, testDelete);
 });
 
 function sendHome() {
   // unclear why VK_HOME doesn't work on Mac, but it doesn't...
   if (Services.appinfo.OS == "Darwin") {
     EventUtils.synthesizeKey("VK_LEFT", { altKey: true });
   } else {