| Index: third_party/WebKit/LayoutTests/imported/wpt/html/semantics/tabular-data/the-tbody-element/deleteRow.html
|
| diff --git a/third_party/WebKit/LayoutTests/imported/wpt/html/semantics/tabular-data/the-tbody-element/deleteRow.html b/third_party/WebKit/LayoutTests/imported/wpt/html/semantics/tabular-data/the-tbody-element/deleteRow.html
|
| index c81abd82600f656eb528b80924fd17249a389b80..5e50a31873999b9cf399f21cb59a18db1fcebb78 100644
|
| --- a/third_party/WebKit/LayoutTests/imported/wpt/html/semantics/tabular-data/the-tbody-element/deleteRow.html
|
| +++ b/third_party/WebKit/LayoutTests/imported/wpt/html/semantics/tabular-data/the-tbody-element/deleteRow.html
|
| @@ -51,4 +51,11 @@ test(function () {
|
| assert_equals(tbody.rows.length, 0);
|
| }, "HTMLTableSectionElement deleteRow(-1) with no rows");
|
|
|
| +test(function () {
|
| + assert_equals(tbody.rows.length, 0);
|
| + assert_throws("IndexSizeError", function () {
|
| + tbody.deleteRow(0);
|
| + });
|
| +}, "HTMLTableSectionElement deleteRow(0) with no rows");
|
| +
|
| </script>
|
|
|