blob: 4e57a4f1c30116f2c9452a888012d749ba0cbb1e [file] [log] [blame]
<script src="../../../js-test.js"></script>
<body>
If this doesn't crash, it passed.
<iframe id=iframe src=resources/empty-custom-body.html></iframe>
</body>
<script>
jsTestIsAsync = true;
if (window.testRunner)
testRunner.dumpAsText();
iframe.onload = function() {
document.body.appendChild(iframe.contentDocument.documentElement);
document.querySelector('#thebody');
iframe.remove();
finishJSTest();
};
successfullyParsed = true;
</script>