https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 5f15f0759999ddd8d9203d05474c935528fc5f7e authored by Simon Pieters on 09 December 2016, 08:14:18 UTC
Make tests fail if the feature is not supported
Tip revision: 5f15f07
001.html
<!doctype html>
<title>resolving broken url</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<script>
test(function() {
  assert_throws('SYNTAX_ERR', function() {
    postMessage('', 'http://foo bar');
  }, 'should have failed to resolve');
});
</script>
back to top