Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / images / gif-loop-count.html
blobde2d0820e9ad03caac80a23d8b7e8a568164011d
1 <html>
2 <head>
3 <script>
4 function step2() {
5 if (window.testRunner)
6 testRunner.notifyDone();
8 function step1() {
9 document.getElementById('replaceme').src = 'resources/gif-loop-count.gif';
10 setTimeout("step2()", 200);
12 function test() {
13 if (window.testRunner) {
14 testRunner.waitUntilDone();
16 setTimeout("step1()", 200);
18 </script>
19 </head>
20 <body onload="test()">
21 <img src="resources/gif-loop-count.gif" style="position:absolute;left:0;top:0">
22 <img src="resources/gif-loop-count.png" id="replaceme" style="position:absolute;left:0;top:0">
23 </body>
24 </html>