389924-1a.html (393B)
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.insertBefore(newCaption, table.firstChild); 12 } 13 </script> 14 15 </head> 16 <body onload="boom();"> 17 18 <table id="table"><tbody></tbody></table> 19 </body> 20 </html>