frame.html (452B)
1 <!DOCTYPE html> 2 <script> 3 var context = "Window"; 4 function ok(a, msg) { 5 parent.postMessage({type: "status", status: !!a, 6 msg: a + ": " + msg, context}, "*"); 7 } 8 9 function is(a, b, msg) { 10 parent.postMessage({type: "status", status: a === b, 11 msg: a + " === " + b + ": " + msg, context}, "*"); 12 } 13 14 function testDone() { 15 parent.postMessage({type: "finish", context}, "*"); 16 } 17 </script>