Bug 449371 Firefox/Thunderbird crashes at exit [@ gdk_display_x11_finalize], p=Brian...
[wine-gecko.git] / testing / performance / talos / page_load_test / dhtml / imageslide.html
blobd709e06fa568a2c85666345816dd845c2626f912
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head>
2 <!-- MOZ_INSERT_CONTENT_HOOK -->
3 <title>tests</title>
4 <script type="text/javascript">
5 var x = 0;
6 var div;
7 var startTime;
9 function mzDhtmlStart()
11 startTime = Date.now();
12 animate();
15 function animate() {
16 if (x < 720)
18 div = document.getElementById("divElement");
19 div.style.left = x + "px";
20 x += 20;
21 setTimeout("animate()", 0);
23 else
24 tpRecordTime(Date.now() - startTime);
26 </script></head>
28 <body onload="mzDhtmlStart();">
29 <div style="position: absolute; top: 100px; width: 90px;" id="divElement">
30 <img src="images/element_subnavigatio.gif" width="90" height="10">
31 </div>
32 </body>
33 </html>