389924-1b.html (413B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <script> 5 function boom() 6 { 7 var table = document.getElementById("table"); 8 9 var newCaption = document.createElement('caption'); 10 newCaption.appendChild(document.createTextNode("THIS SHOULD BE VISIBLE")); 11 table.appendChild(newCaption); 12 table.appendChild(document.createElement("tbody")); 13 } 14 </script> 15 16 </head> 17 <body onload="boom();"> 18 19 <table id="table"></table> 20 </body> 21 </html>