haikuwebkit/LayoutTests/fast/parser/body-should-exist-after-ope...

12 lines
237 B
HTML

<body>
<iframe></iframe>
<script>
if (window.testRunner)
testRunner.dumpAsText();
var doc = frames[0].document;
doc.open();
doc.close();
document.write(doc.body.toString() == "[object HTMLBodyElement]" ? "PASS" : "FAIL");
</script>