Skip to content

Commit

Permalink
Implement HTMLTableRowElement insertCell and deleteCell
Browse files Browse the repository at this point in the history
  • Loading branch information
frewsxcv authored and Ms2ger committed Oct 21, 2015
1 parent a6c2cbe commit f2e8a8c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions html/semantics/tabular-data/the-tr-element/deleteCell.html
Expand Up @@ -43,4 +43,12 @@
});
}, "HTMLTableRowElement deleteCell(cells.length)");

test(function () {
assert_equals(tr.cells.length, 1);
tr.deleteCell(-1);
assert_equals(tr.cells.length, 0);
tr.deleteCell(-1);
assert_equals(tr.cells.length, 0);
}, "HTMLTableRowElement deleteCell(-1) with no cells");

</script>

0 comments on commit f2e8a8c

Please sign in to comment.