blob: b74fc6d892c6d0a00443c3ce84b23ca6fe084a0c [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 bmpImage()
{
return "?name=../../../images/resources/gracehopper.bmp&mimeType=image%2Fbmp";
}
function testDone()
{
window.testRunner && testRunner.notifyDone();
}
function runTest()
{
document.querySelector("img").src = loadAndStall() + bmpImage() + "&stallAt=104000&stallFor=60";
setTimeout(testDone, 1500);
}
window.onload = function() {
setTimeout(runTest, 0);
}
</script>