blob: 3c74564a97e1d81c3f9ed74309e31733cf7d4784 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script src="../../resources/js-test-pre.js"></script>
</head>
<body>
<iframe id="testFrame" srcdoc="<html><body></body></html>"></iframe>
<script>
description("Tests setting document.body to null");
var testDocument = document.getElementById("testFrame").contentDocument;
shouldThrow("testDocument.body = null", "'HierarchyRequestError (DOM Exception 3): The operation would yield an incorrect node tree.'");
</script>
<script src="../../resources/js-test-post.js"></script>
</body>
</html>