diff --git a/source b/source index bac8d40388c..d47bffe82eb 100644 --- a/source +++ b/source @@ -36911,13 +36911,19 @@ the cell that corresponds to the values of the two dice. tr element in the rows collection, and finally must return the newly created tr element.

-

The deleteRow(index) - method must remove the indexth element in the rows collection from its parent. If index is - less than zero or greater than or equal to the number of elements in the rows collection, the method must instead throw an +

The deleteRow(index) method + must, when invoked, act as follows: + +

If index is less than −1 or greater than the number of elements in + the rows collection, the method must throw an IndexSizeError exception.

+

If index is −1, remove the last element in the rows collection from its parent.

+ +

Otherwise, remove the indexth element in the rows collection from its parent.

+ @@ -37171,12 +37177,18 @@ the cell that corresponds to the values of the two dice. must return the newly created td element.

The deleteCell(index) - method must remove the indexth element in the cells collection from its parent. If index is less - than zero or greater than or equal to the number of elements in the cells collection, the method must instead throw an + method must act as follows:

+ +

If index is less than −1 or greater than the number of elements in + the cells collection, the method must throw an IndexSizeError exception.

+

If index is −1, remove the last element in the cells collection from its parent.

+ +

Otherwise, remove the indexth element in the cells collection from its parent.

+ @@ -116631,6 +116643,7 @@ INSERT INTERFACES HERE David Remahl, David Smith, David Woolley, + David Zbarsky, DeWitt Clinton, Dean Edridge, Dean Edwards,