blob: 8f43e782661e31f53f2cac1dfd02d01fe2eeee4b [file] [log] [blame]
<img style="background-color: blue" >
<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/dice.png&mimeType=image%2Fpng";
}
function testDone()
{
if (window.testRunner)
testRunner.notifyDone();
}
function runTest()
{
document.querySelector("img").src = loadAndStall() + pngImage() + "&stallAt=45057&stallFor=60";
setTimeout(testDone, 1500);
}
window.onload = function() {
setTimeout(runTest, 0);
}
</script>