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