015.html (401B)
1 <!doctype html> 2 <title>different origin</title> 3 <script src="/resources/testharness.js"></script> 4 <script src="/resources/testharnessreport.js"></script> 5 <div id=log></div> 6 <script> 7 async_test(function() { 8 postMessage('', 'http://example.org', []); 9 onmessage = this.step_func(function(e) { 10 assert_unreached(); 11 }); 12 setTimeout(this.step_func(function(){ this.done(); }), 50); 13 }); 14 </script>