summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/webmessaging/with-options/null-transfer.html
blob: 2ea09eb7ab4ada86bd4624e222fbdebc026d95e8 (plain)
1
2
3
4
5
6
7
8
9
10
<!doctype html>
<title>null transfer</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id=log></div>
<script>
test(function(t) {
  assert_throws_js(TypeError, () => postMessage('', {transfer: null}));
});
</script>