diff -r 000000000000 -r 6474c204b198 toolkit/components/places/tests/inline/test_zero_frecency.js --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/toolkit/components/places/tests/inline/test_zero_frecency.js Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,27 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +// Ensure inline autocomplete doesn't return zero frecency pages. + +add_autocomplete_test([ + "Searching for zero frecency domain should not autoFill it", + "moz", + "moz", + function () { + Services.prefs.setBoolPref("browser.urlbar.autoFill.typed", false); + promiseAddVisits({ uri: NetUtil.newURI("http://mozilla.org/framed_link/"), + transition: TRANSITION_FRAMED_LINK }); + } +]); + +add_autocomplete_test([ + "Searching for zero frecency url should not autoFill it", + "mozilla.org/f", + "mozilla.org/f", + function () { + Services.prefs.setBoolPref("browser.urlbar.autoFill.typed", false); + promiseAddVisits({ uri: NetUtil.newURI("http://mozilla.org/framed_link/"), + transition: TRANSITION_FRAMED_LINK }); + } +]);