no bug - Import translations from android-l10n r=release a=l10n CLOSED TREE
[gecko.git] / layout / reftests / bugs / 712849-1.html
blob83b4c434059a789ad05ef773a226521ef53106df
1 <!DOCTYPE html>
2 <html><head>
3 <meta http-equiv="content-type" content="text/html; charset=UTF-8">
4 <title>testcase</title>
5 <style>
6 .tt {
7 border-collapse: collapse;
9 .nix {
10 display: none;
12 .ref {
13 border: solid 3px darkred;
16 td {
17 width: 20px;
18 height: 20px;
21 </style>
22 <script>
24 function test ()
26 document.getElementById ("2").className = "nix";
27 document.getElementById ("3").className = "ref";
29 </script>
30 </head>
31 <body onload="test()">
32 <table class="tt">
33 <tr id="1"><td >&nbsp;</td></tr>
34 <tr id="2"><td >&nbsp;</td></tr>
35 <tr id="3"><td >&nbsp;</td></tr>
36 <tr><td>&nbsp;</td></tr>
37 </table>
38 </body>
39 </html>