no bug - Import translations from android-l10n r=release a=l10n CLOSED TREE
[gecko.git] / layout / reftests / bugs / 594333-1.html
blobf8d2173e90b6960d5b9e918247d11c5c50e5cb8a
1 <!DOCTYPE html>
2 <html class="reftest-wait">
3 <head>
4 <style>
5 div {
6 float: left;
7 width: 300px;
8 height: 200px;
9 background: url(repeatable-diagonal-gradient.png);
11 </style>
12 <script type="text/javascript">
13 var i = 32;
14 function test() {
15 document.getElementById("a").style.width = (i*10)+'px';
16 document.getElementById("b").style.opacity = 0.999 - i/64.0;
17 i--;
18 if (i >= 0) {
19 setTimeout(test, 10);
20 } else {
21 document.documentElement.removeAttribute("class");
24 </script>
25 </head>
26 <body onload="test()">
27 <div id="a"></div>
28 <div id="b"></div>
29 </body>
30 </html>