Add a timeout for test_plugin_focus in order for events to be delievered to asynchronous event loops, r=jimm

This commit is contained in:
Benjamin Smedberg 2010-01-26 17:50:41 -05:00
Родитель 5c9ed4f618
Коммит 5b812bc382
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -66,7 +66,7 @@ function handleEvent(event) {
if (s.action) {
// Do the action after this event cycle is done
setTimeout(s.action, 0);
setTimeout(s.action, 1000);
}
}