blob: 1de9dc9ef38cec35defbadbbdc826887a5858a73 [file] [log] [blame]
<SCRIPT>
if (window.layoutTestController) {
layoutTestController.dumpAsText();
layoutTestController.waitUntilDone();
}
setTimeout(function () {
node = document.createElement("M");
document.open();
node.innerHTML = "<body>";
node.innerHTML = "<p>";
node = document.createDocumentFragment();
document.open();
node.innerHTML = "<body>";
node.innerHTML = "<p>";
var b = document.body;
document.write("<a href='https://bugs.webkit.org/show_bug.cgi?id=25694'>bug 25694</a><br>");
document.write(b ? "FAIL: document.body is not null (but at least we didn't crash)" : "PASS");
document.close();
if (window.layoutTestController)
layoutTestController.notifyDone();
}, 0);
</SCRIPT>