Revision control
Copy as Markdown
Other Tools
/* 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
/**
*
* site subdomains.
*/
// Define some shared uris and titles (each page needs its own uri)
var kURIs = [
];
var kTitles = [
"title",
];
// Add various protocols of site
addPageBook(0, 0);
addPageBook(1, 0);
addPageBook(2, 0);
addPageBook(3, 0);
addPageBook(4, 0);
addPageBook(5, 0);
addPageBook(6, 0);
addPageBook(7, 0);
var allSite = [0, 1, 2, 3, 4, 5];
// Provide for each test: description; search terms; array of gPages indices of
// pages that should match; optional function to be run before the test
var gTests = [
["6: www.site matches all site", "www.site", allSite],
["7: w matches none of www.", "w", [6, 7]],
["10: ww matches none of www.", "ww", [7]],
["13: www matches none of www.", "www", [7]],
];