Bug 834255 - Fix intermittent orange. r=bz

This commit is contained in:
Bobby Holley 2013-01-25 11:17:40 +01:00
Родитель 3381553379
Коммит db621aaa66
1 изменённых файлов: 7 добавлений и 3 удалений

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

@ -11,9 +11,13 @@ function test() {
gURLBar.removeEventListener("focus", onFocus);
ok(true, "Invoked onfocus handler");
EventUtils.synthesizeKey("VK_RETURN", { shiftKey: true });
ok(true, "Evaluated without crashing");
finish();
// javscript: URIs are evaluated async.
SimpleTest.executeSoon(function() {
ok(true, "Evaluated without crashing");
finish();
});
});
gURLBar.inputField.value = "javascript: document.body.innerHTML = '11111111'); ";
gURLBar.inputField.value = "javascript: var foo = '11111111'; ";
gURLBar.focus();
}