mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-11 13:48:23 +02:00
MozReview-Commit-ID: 5qGw83uTYTu --HG-- extra : rebase_source : 8cefe9f2661782b45000ff704db2ea7aaa46ac68
13 lines
255 B
JavaScript
13 lines
255 B
JavaScript
"use strict";
|
|
|
|
/* exported waitForLoad */
|
|
|
|
function waitForLoad(win) {
|
|
return new Promise(resolve => {
|
|
win.addEventListener("load", function listener() {
|
|
win.removeEventListener("load", listener, true);
|
|
resolve();
|
|
}, true);
|
|
});
|
|
}
|
|
|