blob: 0d7d3120b1fb9dd17f3db235dbe9ed089d78799f [file] [log] [blame]
<html>
<head>
<script>
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.dumpChildFrames();
testRunner.dumpBackForwardList();
testRunner.waitUntilDone();
}
var count = 4;
function frameLoaded() {
if (count == 0) {
if (window.testRunner)
testRunner.notifyDone();
} else {
document.getElementsByTagName('iframe')[0].src = "data:," + count--;
}
}
</script>
</head>
<body>
<iframe onload="setTimeout(frameLoaded, 0)"></iframe>
</body>
</html>