Bug 460926 A11y hierachy is broken on Ubuntu 8.10 (GNOME 2.24), r=Evan.Yan sr=roc
[wine-gecko.git] / testing / performance / talos / page_load_test / dhtml / zoom.html
blobea25955a74ea3be34f4b9407339da7ec78773d67
1 <html><head>
2 <!-- MOZ_INSERT_CONTENT_HOOK -->
3 <script>
5 var ww = 1200;
6 var counter = 46;
7 var im;
8 var startTime;
10 function mzDhtmlStart()
12 startTime = Date.now();
13 im=document.getElementById("im");
14 animate();
17 function animate()
19 ww -= counter;
20 counter--;
21 if (counter > 0)
23 im.setAttribute("width", ww);
24 setTimeout("animate()", 0);
26 else {
27 tpRecordTime(Date.now() - startTime);
30 </script></head>
32 <body onload="mzDhtmlStart();" bgcolor="black">
33 <img id="im" src="images/moz.gif" width="136">
34 </body></html>