gecko/toolkit/components/places/tests/autocomplete/test_tabmatches.js
Jim Blandy 4d6a633bba Bug 914753: Make Emacs file variable header lines correct, or at least consistent. DONTBUILD r=ehsan
The -*- file variable lines -*- establish per-file settings that Emacs will
pick up. This patch makes the following changes to those lines (and touches
nothing else):

 - Never set the buffer's mode.

   Years ago, Emacs did not have a good JavaScript mode, so it made sense
   to use Java or C++ mode in .js files. However, Emacs has had js-mode for
   years now; it's perfectly serviceable, and is available and enabled by
   default in all major Emacs packagings.

   Selecting a mode in the -*- file variable line -*- is almost always the
   wrong thing to do anyway. It overrides Emacs's default choice, which is
   (now) reasonable; and even worse, it overrides settings the user might
   have made in their '.emacs' file for that file extension. It's only
   useful when there's something specific about that particular file that
   makes a particular mode appropriate.

 - Correctly propagate settings that establish the correct indentation
   level for this file: c-basic-offset and js2-basic-offset should be
   js-indent-level. Whatever value they're given should be preserved;
   different parts of our tree use different indentation styles.

 - We don't use tabs in Mozilla JS code. Always set indent-tabs-mode: nil.
   Remove tab-width: settings, at least in files that don't contain tab
   characters.

 - Remove js2-mode settings that belong in the user's .emacs file, like
   js2-skip-preprocessor-directives.
2014-06-24 22:12:07 -07:00

94 lines
2.5 KiB
JavaScript

/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*-
* vim:set ts=2 sw=2 sts=2 et:
* 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/. */
let gTabRestrictChar = prefs.getCharPref("browser.urlbar.restrict.openpage");
let kSearchParam = "enable-actions";
let kURIs = [
"http://abc.com/",
"moz-action:switchtab,http://abc.com/",
"http://xyz.net/",
"moz-action:switchtab,http://xyz.net/",
"about:mozilla",
"moz-action:switchtab,about:mozilla",
"data:text/html,test",
"moz-action:switchtab,data:text/html,test"
];
let kTitles = [
"ABC rocks",
"xyz.net - we're better than ABC",
"about:mozilla",
"data:text/html,test"
];
addPageBook(0, 0);
gPages[1] = [1, 0];
addPageBook(2, 1);
gPages[3] = [3, 1];
addOpenPages(0, 1);
// PAges that cannot be registered in history.
addOpenPages(4, 1);
gPages[5] = [5, 2];
addOpenPages(6, 1);
gPages[7] = [7, 3];
let gTests = [
["0: single result, that is also a tab match",
"abc.com", [1]],
["1: two results, one tab match",
"abc", [1,2]],
["2: two results, both tab matches",
"abc", [1,3],
function() {
addOpenPages(2, 1);
}],
["3: two results, both tab matches, one has multiple tabs",
"abc", [1,3],
function() {
addOpenPages(2, 5);
}],
["4: two results, no tab matches",
"abc", [0,2],
function() {
removeOpenPages(0, 1);
removeOpenPages(2, 6);
}],
["5: tab match search with restriction character",
gTabRestrictChar + " abc", [1],
function() {
addOpenPages(0, 1);
}],
["6: tab match with not-addable pages",
"mozilla", [5]],
["7: tab match with not-addable pages and restriction character",
gTabRestrictChar + " mozilla", [5]],
["8: tab match with not-addable pages and only restriction character",
gTabRestrictChar, [1, 5, 7]],
];
function addOpenPages(aUri, aCount) {
let num = aCount || 1;
let acprovider = Cc["@mozilla.org/autocomplete/search;1?name=history"].
getService(Ci.mozIPlacesAutoComplete);
for (let i = 0; i < num; i++) {
acprovider.registerOpenPage(toURI(kURIs[aUri]));
}
}
function removeOpenPages(aUri, aCount) {
let num = aCount || 1;
let acprovider = Cc["@mozilla.org/autocomplete/search;1?name=history"].
getService(Ci.mozIPlacesAutoComplete);
for (let i = 0; i < num; i++) {
acprovider.unregisterOpenPage(toURI(kURIs[aUri]));
}
}