Revision bca58b0cef32b342eece2c135fdc62e32b69e557 authored by moz-wptsync-bot on 16 March 2018, 13:38:52 UTC, committed by moz-wptsync-bot on 20 March 2018, 02:29:46 UTC
bugzilla-url: https://bugzilla.mozilla.org/show_bug.cgi?id=1445883
gecko-commit: 0f81334efa0a008db8931a41eef2d26a77d0e800
gecko-integration-branch: mozilla-inbound
gecko-reviewers: smaug
1 parent c51eaff
Raw File
postMessage_Document.htm
<!DOCTYPE html>
<html>
<head>
<title> postMessage with Document object </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 Document object: Throw a DataCloneError if message could not be cloned.";

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

    function PostMessageTest()
    {
        test(function()
        {
            assert_throws("DATA_CLONE_ERR", function()
            {
                TARGET.contentWindow.postMessage(DATA, "*");
            });
        }, description);
    }
</script>
</body>
</html>
back to top