mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 11:38:11 +00:00
11 lines
298 B
HTML
11 lines
298 B
HTML
<table><tbody id="tbody"><tr></tr></tbody></table>
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
tbody.insertRow(0);
|
|
println(tbody.rows.length)
|
|
println(tbody.rows[0])
|
|
println(tbody.rows[1])
|
|
println("PASS (didn't crash)");
|
|
});
|
|
</script>
|