diff --git a/source b/source index 162dddcac5f..6fcfc0213e4 100644 --- a/source +++ b/source @@ -38255,19 +38255,16 @@ interface HTMLTableElement : HTMLElement { steps:
If index is less than −1 or greater than or equal to the number of
+ elements in the rows
collection, then throw an
+ "IndexSizeError
" DOMException
.
If index is equal to −1, then index must be
- set to the number of items in the rows
collection, minus
- one.
Now, 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 "IndexSizeError
" DOMException
, and these
- steps must be aborted.
Otherwise, the method must remove the indexth element in the rows
collection from its parent.
If index is −1, then remove
+ the last element in the rows
collection from its parent, or
+ do nothing if the rows
collection is empty.
Otherwise, remove the indexth element
+ in the rows
collection from its parent.