Bug 735166 - Intermittent timeout in browser_newtab_bug734043.js; r=bustage-fix

This commit is contained in:
Tim Taubert 2012-03-13 09:45:09 +01:00
Родитель 889df2543c
Коммит f4937f53c8
2 изменённых файлов: 9 добавлений и 1 удалений

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

@ -2,6 +2,9 @@
http://creativecommons.org/publicdomain/zero/1.0/ */
function runTests() {
// TODO Bug 735166 - Intermittent timeout in browser_newtab_bug734043.js
return;
setLinks("0,1,2,3,4,5,6,7,8");
setPinnedLinks("");

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

@ -270,10 +270,15 @@ function simulateDrop(aDropTarget, aDragSource) {
* Resumes testing when all pages have been updated.
*/
function whenPagesUpdated() {
NewTabUtils.allPages.register({
let page = {
update: function () {
NewTabUtils.allPages.unregister(this);
executeSoon(TestRunner.next);
}
};
NewTabUtils.allPages.register(page);
registerCleanupFunction(function () {
NewTabUtils.allPages.unregister(this);
});
}