RetroZilla/layout/html/tests/table/bugs/bug9024.html
2015-10-20 23:03:22 -04:00

26 lines
330 B
HTML

<title>Test</title>
<style type="text/css">
table { border-collapse: collapse; }
</style>
<body>
<table border>
<tbody id="mytable">
</tbody>
</table>
<script type="text/javascript">
var mytable = document.getElementById("mytable");
dump("before\n");
var newrow = mytable.insertRow(0);
dump("after\n");
</script>
</body>