summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/webmessaging/with-ports/003.html
blob: 47ddfbe81a5acefc5995dd39ef0291c42925f3f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!doctype html>
<title>resolving 'example.org'</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<script>
test(function() {
  assert_throws_dom('SYNTAX_ERR', function() {
    postMessage('', 'example.org', []);
  }, 'targetOrigin is not an absolute url');
});
</script>