Bug 738818 followup: remove now-unused portions of test

This commit is contained in:
Gavin Sharp 2013-04-10 16:58:07 -07:00
Родитель 53193b70f7
Коммит 2a0e890e35
1 изменённых файлов: 0 добавлений и 8 удалений

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

@ -68,11 +68,6 @@ function test() {
var gCurrTest;
function nextTest() {
// Clear the pref before every test (and after the last)
try {
Services.prefs.clearUserPref("keyword.URL");
} catch(ex) {}
if (gTests.length) {
gCurrTest = gTests.shift();
doTest();
@ -84,9 +79,6 @@ function nextTest() {
function doTest() {
info("Running test: " + gCurrTest.name);
if (gCurrTest.keywordURLPref)
Services.prefs.setCharPref("keyword.URL", gCurrTest.keywordURLPref);
// Simulate a user entering search terms
gURLBar.value = gCurrTest.testText;
gURLBar.focus();