fune/toolkit/content/tests/widgets/head.js
Victor Porof 0773795931 Bug 1561435 - Format toolkit/content/, a=automatic-formatting
# ignore-this-changeset

Differential Revision: https://phabricator.services.mozilla.com/D36053

--HG--
extra : source : 651d8f947a29f5d80b7e833f7e6b99e2afe8bf9d
2019-07-05 11:14:49 +02:00

57 lines
1.1 KiB
JavaScript

"use strict";
const InspectorUtils = SpecialPowers.InspectorUtils;
var tests = [];
function waitForCondition(condition, nextTest, errorMsg) {
var tries = 0;
var interval = setInterval(function() {
if (tries >= 30) {
ok(false, errorMsg);
moveOn();
}
var conditionPassed;
try {
conditionPassed = condition();
} catch (e) {
ok(false, e + "\n" + e.stack);
conditionPassed = false;
}
if (conditionPassed) {
moveOn();
}
tries++;
}, 100);
var moveOn = function() {
clearInterval(interval);
nextTest();
};
}
function getElementWithinVideo(video, aValue) {
const shadowRoot = SpecialPowers.wrap(video).openOrClosedShadowRoot;
return shadowRoot.getElementById(aValue);
}
function executeTests() {
return tests
.map(fn => () => new Promise(fn))
.reduce((promise, task) => promise.then(task), Promise.resolve());
}
function once(target, name, cb) {
let p = new Promise(function(resolve, reject) {
target.addEventListener(
name,
function() {
resolve();
},
{ once: true }
);
});
if (cb) {
p.then(cb);
}
return p;
}