tenfourfox/layout/reftests/bugs/389924-1a.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

21 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>