зеркало из https://github.com/mozilla/gecko-dev.git
Bug 735166 - Intermittent timeout in browser_newtab_bug734043.js; r=bustage-fix
This commit is contained in:
Родитель
889df2543c
Коммит
f4937f53c8
|
@ -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);
|
||||
});
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче