mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-06-12 10:39:18 +00:00
15 lines
313 B
JavaScript
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;
|
|
}
|