summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/webmessaging/postMessage_dup_transfer_objects.htm
blob: ade9515d3acd42e1a12bd97627a57f7a13e75787 (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
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html>
<head>
<title> postMessage with duplicate transfer objects raises DataCloneError exception </title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
<div id=log></div>

<div style="display:none">
    <iframe width="70%" onload="PostMessageTest()" src="./support/ChildWindowPostMessage.htm"></iframe>
</div>

<script>


    var description = "Test Description: " +
                      "postMessage with duplicate transfer objects raises DataCloneError exception.";

    var DATA = "ports";
    var TARGET = document.querySelector("iframe");

    function PostMessageTest()
    {
        test(function()
        {
            assert_throws_dom("DATA_CLONE_ERR", TARGET.contentWindow.DOMException, function()
            {
                assert_own_property(window, "MessageChannel", "window");
                var channel = new MessageChannel();
                TARGET.contentWindow.postMessage(DATA, "*", [channel.port1, channel.port1]);
            });
        }, description);
    }
</script>
</body>
</html>