null-transfer.html (284B)
1 <!doctype html> 2 <title>null transfer</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(t) { 8 assert_throws_js(TypeError, () => postMessage('', {transfer: null})); 9 }); 10 </script>