Bug 419766 - Allow partial tag match and multiword matching against title, url, tags in places

This commit is contained in:
edward.lee@engineering.uiuc.edu 2008-02-26 22:25:46 -08:00
Родитель 064363dcb6
Коммит 71bfd45913
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -90,12 +90,12 @@ function run_test() {
do_check_eq(rootNode.childCount, 1);
do_check_eq(rootNode.getChild(0).itemId, b1);
// only exact matches
// partial matches are okay
query.searchTerms = "wal";
var result = histsvc.executeQuery(query, options);
var rootNode = result.root;
rootNode.containerOpen = true;
do_check_eq(rootNode.childCount, 0);
do_check_eq(rootNode.childCount, 1);
// case insensitive search term
query.searchTerms = "WALRUS";