blob: 44c318f825fea612afc6d82daaa912b57b49f1ea [file] [log] [blame]
<img style="background: green" >
<script>
if (window.testRunner) {
testRunner.dumpAsText(true);
testRunner.waitUntilDone();
}
function loadAndStall()
{
return "http://127.0.0.1:8000/resources/load-and-stall.php";
}
function pngImage()
{
return "?name=../../../fast/images/resources/lenna.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, 500);
}
setTimeout(runTest, 0);
</script>