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
/*
* escaped.
*
* - add a visit for a page with a non-English URL
* - add a tag for the page
* - search for the tag
* - test number of matches (should be exactly one)
* - make sure the url is decoded
*/
var theTag = "superTag";
// Define some shared uris and titles (each page needs its own uri)
var kURIs = [
];
var kTitles = [
"title",
theTag,
];
// Add pages that match the tag
addPageBook(0, 0, 0, [1]);
addPageBook(1, 0, 0, [1]);
// 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 = [
["0: Make sure tag matches return the right url as well as '+' remain escaped",
theTag, [0, 1]],
];