mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-16 17:33:08 +09:00
14 lines
313 B
JavaScript
14 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;
|
|
}
|