Bug 632433 - Remove calls to Firefox stopSearch(), rename test_autocomplete.xul to test_autocomplete_mac_caret.xul. r=enn

--HG--
rename : toolkit/content/tests/chrome/test_autocomplete.xul => toolkit/content/tests/chrome/test_autocomplete_mac_caret.xul
This commit is contained in:
Serge Gautherie 2011-11-27 12:24:37 +01:00
Родитель 360fdc970d
Коммит 46831f5ed9
5 изменённых файлов: 1 добавлений и 5 удалений

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

@ -193,7 +193,7 @@ _TEST_FILES += test_panel_focus.xul \
test_chromemargin.xul \
window_chromemargin.xul
else
_TEST_FILES += test_autocomplete.xul
_TEST_FILES += test_autocomplete_mac_caret.xul
endif
ifeq ($(MOZ_WIDGET_TOOLKIT),windows)

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

@ -167,7 +167,6 @@ function checkResult() {
setTimeout(function() {
// Unregister the factory so that we don't get in the way of other tests
componentManager.unregisterFactory(autoCompleteSimpleID, autoCompleteSimple);
autocomplete.controller.stopSearch();
SimpleTest.finish();
}, 0);
}

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

@ -167,7 +167,6 @@ function checkResult() {
setTimeout(function() {
// Unregister the factory so that we don't get in the way of other tests
componentManager.unregisterFactory(autoCompleteSimpleID, autoCompleteSimple);
autocomplete.controller.stopSearch();
SimpleTest.finish();
}, 0);
}

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

@ -148,7 +148,6 @@ function nextTest() {
if (!tests.length) {
// No more tests to run, finish.
setTimeout(function() {
$("autocomplete").controller.stopSearch();
// Unregister the factory so that we don't get in the way of other tests
componentManager.unregisterFactory(autoCompleteSimpleID, autoCompleteSimple);
SimpleTest.finish();

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

@ -46,7 +46,6 @@ function keyCaretTest()
autocomplete.selectionEnd = 4;
checkKeyCaretTest("VK_DOWN", 6, 6, true, "value down with selection");
autocomplete.controller.stopSearch();
SimpleTest.finish();
}