Files
tubestation/toolkit/components/extensions/test/mochitest/head.js
Andrew Swan 2a78a4af63 Bug 1272522 Handle stderr of native app r=kmag
MozReview-Commit-ID: 5qGw83uTYTu
2016-07-06 14:57:56 -07:00

14 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);
});
}