mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
22 lines
413 B
HTML
22 lines
413 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script>
|
|
function boom()
|
|
{
|
|
var table = document.getElementById("table");
|
|
|
|
var newCaption = document.createElement('caption');
|
|
newCaption.appendChild(document.createTextNode("THIS SHOULD BE VISIBLE"));
|
|
table.appendChild(newCaption);
|
|
table.appendChild(document.createElement("tbody"));
|
|
}
|
|
</script>
|
|
|
|
</head>
|
|
<body onload="boom();">
|
|
|
|
<table id="table"></table>
|
|
</body>
|
|
</html>
|