haikuwebkit/LayoutTests/fast/dom/document-set-body-null.html

18 lines
462 B
HTML

<!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;
shouldThrowErrorName("testDocument.body = null", "HierarchyRequestError");
</script>
<script src="../../resources/js-test-post.js"></script>
</body>
</html>