blob: c0842b73f56824944e6141982d2f4e0bc221030e [file] [log] [blame]
<body onload = "test()">
<p>Test that accessing a detached iframe's applicationCache window property doesn't assert. If you don't see an assert, it passed.</p>
<iframe src="about:blank"></iframe>
<script>
if (window.testRunner)
testRunner.dumpAsText();
function test()
{
var ifr = frames[0];
document.body.removeChild(document.getElementsByTagName("iframe")[0]);
ifr.applicationCache;
}
</script>
</body>