| <title> postMessage with Function object </title> |
| <script src="/resources/testharness.js"></script> |
| <script src="/resources/testharnessreport.js"></script> |
| <div style="display:none"> |
| <iframe width="70%" onload="PostMessageTest()" src="./support/ChildWindowPostMessage.htm"></iframe> |
| var description = "Test Description: " + |
| "postMessage with Function object: Throw a DataCloneError if message could not be cloned."; |
| var DATA = new Function(); |
| var TARGET = document.querySelector("iframe"); |
| function PostMessageTest() |
| assert_throws("DATA_CLONE_ERR", function() |
| TARGET.contentWindow.postMessage(DATA, "*"); |