mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-20 19:33:08 +09:00
17 lines
479 B
HTML
17 lines
479 B
HTML
<!DOCTYPE html>
|
|
<script>
|
|
var context = "Window";
|
|
function ok(a, msg) {
|
|
parent.postMessage({type: 'status', status: !!a,
|
|
msg: a + ": " + msg, context: context}, "*");
|
|
}
|
|
|
|
function is(a, b, msg) {
|
|
parent.postMessage({type: 'status', status: a === b,
|
|
msg: a + " === " + b + ": " + msg, context: context}, "*");
|
|
}
|
|
|
|
function testDone() {
|
|
parent.postMessage({type: 'finish', context: context}, "*");
|
|
}
|
|
</script>
|