frame.html 479 B

123456789101112131415161718
  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: context}, "*");
  7. }
  8. function is(a, b, msg) {
  9. parent.postMessage({type: 'status', status: a === b,
  10. msg: a + " === " + b + ": " + msg, context: context}, "*");
  11. }
  12. function testDone() {
  13. parent.postMessage({type: 'finish', context: context}, "*");
  14. }
  15. </script>