summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/webmessaging/without-ports/024.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/webmessaging/without-ports/024.html')
-rw-r--r--testing/web-platform/tests/webmessaging/without-ports/024.html14
1 files changed, 0 insertions, 14 deletions
diff --git a/testing/web-platform/tests/webmessaging/without-ports/024.html b/testing/web-platform/tests/webmessaging/without-ports/024.html
deleted file mode 100644
index 8d9999459..000000000
--- a/testing/web-platform/tests/webmessaging/without-ports/024.html
+++ /dev/null
@@ -1,14 +0,0 @@
-<!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>