blob: bdcdff5d59448596e892a5e1e85090a3bf3aa7c3 [file] [log] [blame]
<script>
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.waitUntilDone();
}
setTimeout(function(){
document.body.innerHTML = "<b>PASS:</b> body and iframe cleared without crashing.";
testRunner.notifyDone();
}, 0);
</script>
<body onload='document.getElementById("x").innerHTML = 1'>
<div id="x">
<iframe src="does-not-exist">
</div>
</body>