blob: fc61bf64682ba3741901dc0af6a7560e7a46fe8a [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 gifImage()
{
return "?name=../../../images/resources/count-down-color-test.gif&mimeType=image%2Fgif";
}
function testDone()
{
window.testRunner && testRunner.notifyDone();
}
function runTest()
{
document.querySelector("img").src = loadAndStall() + gifImage() + "&stallAt=4952&stallFor=60";
setTimeout(testDone, 1500);
}
window.onload = function() {
setTimeout(runTest, 0);
}
</script>