summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/webmessaging/with-ports/003.html
blob: 3c0d4296b07e85f7b5fd9bd3e9f7fe9bf8cdd9b1 (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('SYNTAX_ERR', function() {
    postMessage('', 'example.org', []);
  }, 'targetOrigin is not an absolute url');
});
</script>