OLD | NEW |
1 <img style="background-color: blue" > | 1 <img style="background-color: blue" > |
2 <script> | 2 <script> |
3 if (window.testRunner) { | 3 if (window.testRunner) { |
4 testRunner.dumpAsTextWithPixelResults(); | 4 testRunner.dumpAsTextWithPixelResults(); |
5 testRunner.waitUntilDone(); | 5 testRunner.waitUntilDone(); |
6 } | 6 } |
7 | 7 |
8 function loadAndStall() | 8 function loadAndStall() |
9 { | 9 { |
10 return "http://127.0.0.1:8000/resources/load-and-stall.php"; | 10 return "http://127.0.0.1:8000/resources/load-and-stall.php"; |
11 } | 11 } |
12 | 12 |
13 function pngImage() | 13 function pngImage() |
14 { | 14 { |
15 return "?name=../../../fast/images/resources/dice.png&mimeType=image%2Fpng"; | 15 return "?name=../../../fast/images/resources/dice.png&mimeType=image%2Fpng"; |
16 } | 16 } |
17 | 17 |
18 function testDone() | 18 function testDone() |
19 { | 19 { |
20 if (window.testRunner) | 20 if (window.testRunner) |
21 testRunner.notifyDone(); | 21 testRunner.notifyDone(); |
22 } | 22 } |
23 | 23 |
24 function runTest() | 24 function runTest() |
25 { | 25 { |
26 document.querySelector("img").src = loadAndStall() + pngImage() + "&stallAt=
45057&stallFor=60"; | 26 document.querySelector("img").src = loadAndStall() + pngImage() + "&stallAt=
45057&stallFor=60"; |
27 setTimeout(testDone, 500); | 27 setTimeout(testDone, 500); |
28 } | 28 } |
29 | 29 |
30 setTimeout(runTest, 0); | 30 window.onload = function() { |
| 31 setTimeout(runTest, 0); |
| 32 } |
31 </script> | 33 </script> |
OLD | NEW |