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 <html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
3 <head>
4 <script>
6 function boom()
7 {
8 var table = document.getElementById('table');
10 var newTR = document.createElement('tr');
11 var newTD = document.createElement('td');
12 newTR.appendChild(newTD);
13 table.appendChild(newTR);
15 newTD.setAttribute('rowspan', 3);
17 document.documentElement.removeAttribute("class");
18 }
20 </script>
21 </head>
24 <body onload="setTimeout(boom, 30);">
26 <table id="table"><tr><td></td><td></td></tr></table>
28 </body>
30 </html>