Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / parser / body-should-exist-after-open-close.html
blob2e693e9355b16307f7918835243a4a42827467b6
1 <body>
2 <iframe></iframe>
3 <script>
4 if (window.testRunner)
5 testRunner.dumpAsText();
7 var doc = frames[0].document;
8 doc.open();
9 doc.close();
10 document.write(doc.body.toString() == "[object HTMLBodyElement]" ? "PASS" : "FAIL");
11 </script>