Bug 916143 - Try to fix test_movement_by_words.html on Win8 PGO with a waitForFocus

This commit is contained in:
Mats Palmgren 2013-11-17 15:33:48 -08:00
Родитель 28dc772b79
Коммит 68fe8a4e5b
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -18,7 +18,7 @@
SimpleTest.waitForExplicitFinish();
setTimeout(focusing, 0);
SimpleTest.waitForFocus(function(){setTimeout(focusing, 0)});
function focusing() {
document.getElementById("editor").focus();
@ -33,6 +33,7 @@ var sel = window.getSelection();
var editor = document.getElementById("editor");
function setPrefs(eat_space, stop_at_punctuation, callback) {
eatSpace = eat_space;
SpecialPowers.pushPrefEnv({"set": [["layout.word_select.eat_space_to_next_word", eat_space], ["layout.word_select.stop_at_punctuation", stop_at_punctuation]]}, callback);
}