Fri, 16 Jan 2015 04:50:19 +0100
Replace accessor implementation with direct member state manipulation, by
request https://trac.torproject.org/projects/tor/ticket/9701#comment:32
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2 <html lang="en" class="reftest-wait">
3 <head>
4 <title>bug 237421: test2a</title>
6 <script type="text/javascript">
10 function remove_second_row() {
12 var r2 = document.getElementById("row2");
14 r2.style.display ="none";
16 setTimeout('remove_first_row()', 10);
18 }
22 function remove_first_row() {
24 var r1 = document.getElementById("row1");
26 r1.style.display ="none";
28 document.documentElement.removeAttribute("class");
30 }
34 </script>
37 </head>
38 <body onload="setTimeout( 'remove_second_row()', 10)">
39 <table border>
40 <tr id="row1"><td rowspan="3">a</td><td rowspan="3">b</td></tr>
41 <tr id="row2"></tr>
42 <tr></tr>
43 <tr><td>c</td></tr>
44 </table>
46 </body>
47 </html>