blob: 243a6bc52afe3cc029e628fba0104376a00053ea [file] [log] [blame]
<html>
<head>
<script type="text/javascript">
function showBug() {
var table, row, cell;
table = document.createElement("table");
document.body.appendChild(table);
row = table.insertRow(0);
row.insertCell(0).appendChild(document.createTextNode("row 1"));
row = table.insertRow(1);
row.insertCell(0).appendChild(document.createTextNode("row 2"));
row = table.insertRow(2);
row.insertCell(0).appendChild(document.createTextNode("row 3"));
}
</script>
</head>
<body onLoad="showBug();">
<p>You should see three rows below labeled "row 1", "row 2", "row 3", from top to bottom.</p>
</body>
</html>