Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script>
5 function boom()
6 {
7 var table = document.getElementById("table");
9 var newCaption = document.createElement('caption');
10 newCaption.appendChild(document.createTextNode("THIS SHOULD BE VISIBLE"));
11 table.insertBefore(newCaption, table.firstChild);
12 }
13 </script>
15 </head>
16 <body onload="boom();">
18 <table id="table"><tbody></tbody></table>
19 </body>
20 </html>