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>
2 <html class="reftest-wait">
3 <head>
4 <style type="text/css">
6 html,body {
7 color:black; background-color:white; font-size:16px; padding:0; margin:0;
8 }
10 </style>
12 <script>
13 function insertTable() {
14 var table = document.createElement('table');
15 var tbody = document.createElement('tbody');
16 var tbody2 = document.createElement('tbody');
17 var text = document.createTextNode('1');
18 var text2 = document.createTextNode('2');
19 tbody.appendChild(text);
20 tbody2.appendChild(text2);
21 table.appendChild(tbody);
22 table.appendChild(tbody2);
24 table.setAttribute('height','82');
25 table.setAttribute('style','border:6px solid lime');
27 tbody2.setAttribute('height','30');
29 document.body.appendChild(table);
31 setTimeout(function() { document.documentElement.className = ""; }, 0);
32 }
33 </script>
34 </head>
36 <body onload="insertTable()"></body>
38 </html>