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