1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 11:38:11 +00:00
serenity/Tests/LibWeb/Text/input/HTML/tbody-insert-row.html
2024-03-12 16:30:39 +01:00

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>