blob: e69f22c21b01e32c4cd662db34865d7367eb6f35 [file] [log] [blame]
<img style="background: green" >
<script>
if (window.testRunner)
testRunner.waitUntilDone();
function loadAndStall()
{
return "http://127.0.0.1:8000/resources/load-and-stall.php";
}
function pngImage()
{
return "?name=../../../images/resources/gracehopper.png&mimeType=image%2Fpng";
}
function testDone()
{
if (window.testRunner)
testRunner.notifyDone();
}
function runTest()
{
document.querySelector("img").src = loadAndStall() + pngImage() + "&stallAt=55297&stallFor=60";
setTimeout(testDone, 1500);
}
window.onload = function() {
setTimeout(runTest, 0);
}
</script>