blob: 9f4cd6b9be711e90c435140bab5183aa10e18e31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<!DOCTYPE html>
<html>
<head>
<title> postMessage() with a host object raises DataCloneError </title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
<div id=log></div>
<script>
var description = "Throw a DataCloneError when a host object (e.g. a DOM node) is used with postMessage.";
test(function()
{
var channel = new MessageChannel();
channel.port1.start();
assert_throws("DATA_CLONE_ERR", function()
{
channel.port1.postMessage(navigator);
});
}, description);
</script>
</body>
</html>
|