gecko/testing/performance/talos/page_load_test/dhtml/zoom.html
2007-09-26 17:15:13 -07:00

35 lines
596 B
HTML

<html><head>
<!-- MOZ_INSERT_CONTENT_HOOK -->
<script>
var ww = 1200;
var counter = 46;
var im;
var startTime;
function mzDhtmlStart()
{
startTime = Date.now();
im=document.getElementById("im");
animate();
}
function animate()
{
ww -= counter;
counter--;
if (counter > 0)
{
im.setAttribute("width", ww);
setTimeout("animate()", 0);
}
else {
tpRecordTime(Date.now() - startTime);
}
}
</script></head>
<body onload="mzDhtmlStart();" bgcolor="black">
<img id="im" src="images/moz.gif" width="136">
</body></html>