Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
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;
8 }
9 .nix {
10 display: none;
11 }
12 .ref {
13 border: solid 3px darkred;
14 }
16 td {
17 width: 20px;
18 height: 20px;
19 }
21 </style>
22 <script>
24 function test ()
25 {
26 document.getElementById ("2").className = "nix";
27 document.getElementById ("3").className = "ref";
28 }
29 </script>
30 </head>
31 <body onload="test()">
32 <table class="tt">
33 <tr id="1"><td > </td></tr>
34 <tr id="2"><td > </td></tr>
35 <tr id="3"><td > </td></tr>
36 <tr><td> </td></tr>
37 </table>
38 </body>
39 </html>