summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/webmessaging/without-ports/024.html
blob: 8d99994599c9b638b6af9d02c25b285158d553de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!doctype html>
<title>Object cloning: throw an exception if function values encountered</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id=log></div>
<script>
test(function() {
  var obj = { f : function(){}};
  var ch = new MessageChannel();
  ch.port1.onmessage = function(){};
  ch.port2.start();
  assert_throws('DATA_CLONE_ERR', function() { ch.port2.postMessage({obj: obj}); });
});
</script>