003.html (351B)
1 <!doctype html> 2 <title>resolving 'example.org'</title> 3 <script src="/resources/testharness.js"></script> 4 <script src="/resources/testharnessreport.js"></script> 5 <div id="log"></div> 6 <script> 7 test(function() { 8 assert_throws_dom('SYNTAX_ERR', function() { 9 postMessage('', 'example.org'); 10 }, 'targetOrigin is not an absolute url'); 11 }); 12 </script>