001.html (345B)
1 <!doctype html> 2 <title>resolving broken url</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('', 'http://foo bar'); 10 }, 'should have failed to resolve'); 11 }); 12 </script>