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 / textslide.html
blobbf1cb14d530542cac6ea3c194bf82b35fc6c9fbb
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><html><head>
2 <!-- MOZ_INSERT_CONTENT_HOOK -->
3 <title>textslide</title>
5 <script language="JavaScript">
7 var flower;
8 var startTime;
10 function animateLayers() {
11 var x_pos1 = parseInt(flower.left);
12 if (x_pos1 < 128)
14 flower.left = x_pos1+2;
15 setTimeout("animateLayers()", 0);
17 else
18 tpRecordTime(Date.now() - startTime);
21 function mzDhtmlStart()
23 startTime = Date.now();
24 flower = document.getElementById("flower").style;
25 animateLayers();
27 </script></head>
30 <body onload="mzDhtmlStart();">
31 <div id="flower" style="position: absolute; width: 200px; height: 115px; z-index: 1; top: 200px; visibility: visible; left: 0px;">
32 Lots of text... Lots of text... Lots of text... Lots of text... Lots of text... Lots of text...
33 </div>
34 </body></html>