Thu, 15 Jan 2015 21:03:48 +0100
Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)
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>