bug 491624 - intermittent browser_bug462289.js failure, try giving the tab key time to settle, r=Neil

This commit is contained in:
Robert Kaiser 2009-05-31 00:46:55 +02:00
Родитель f6dc42686d
Коммит edca5b7817
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -27,14 +27,14 @@ function step3()
todo_is(document.activeElement, tab1, "mouse on tab again activeElement");
document.getElementById("urlbar").inputField.focus();
// give focus a chance to settle
EventUtils.synthesizeKey("VK_TAB", { });
// give tab key a chance to settle
setTimeout(step3_5, 0);
}
function step3_5()
{
EventUtils.synthesizeKey("VK_TAB", { });
is(document.activeElement, tab1, "tab key to tab activeElement");
EventUtils.synthesizeMouse(tab1, 9, 9, {});