1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-06-28 03:08:33 +00:00
Files
UXP/dom/worklet/tests/common.js
T

15 lines
313 B
JavaScript

function loadTest(file) {
var iframe = document.createElement('iframe');
iframe.src = file;
document.body.appendChild(iframe);
}
function setupTest() {
window.SimpleTest = parent.SimpleTest;
window.is = parent.is;
window.isnot = parent.isnot;
window.ok = parent.ok;
window.info = parent.info;
}