Oreon-Lime-R2/mingw-wine-gecko/wine-gecko-2.47.4-src/wine-gecko-2.47.4/layout/reftests/bugs/389924-1a.html

20 lines
393 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.insertBefore(newCaption, table.firstChild);
}
</script>
</head>
<body onload="boom();">
<table id="table"><tbody></tbody></table>
</body>
</html>