blob: 5a26c94ab89bb2c5d969e283b37cd9e6524d7481 [file] [log] [blame]
<html>
<body><p>
This is some text to force a scrollbar to appear.
This is some text to force a scrollbar to appear.
This is some text to force a scrollbar to appear.
</p>
<img id="i" onbeforeload="beforeload()" onload="pass()">
</body>
<script>
function beforeload()
{
setTimeout(function() {
var win = window.parent;
win.document.getElementById("iframe").style.display = "none";
});
return true;
}
function pass()
{
var win = window.parent;
win.document.getElementById("iframe").style.display = "";
win.document.body.appendChild(document.createTextNode("PASSED"));
if (window.layoutTestController)
layoutTestController.notifyDone();
}
</script>
</html>