[Release] Webkit-EFL Ver. 2.0_beta_118996_0.6.22
[framework/web/webkit-efl.git] / LayoutTests / fast / images / gif-loop-count.html
1 <html>
2 <head>
3 <script>
4     function step2() {
5         if (window.layoutTestController)
6             layoutTestController.notifyDone();
7     }
8     function step1() {
9         document.getElementById('replaceme').src = 'resources/gif-loop-count.gif';
10         setTimeout("step2()", 200);
11     }
12     function test() {
13         if (window.layoutTestController) {
14             layoutTestController.waitUntilDone();
15         }
16         setTimeout("step1()", 200);
17     }
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>