diff --git a/source b/source index 162dddcac5f..6fcfc0213e4 100644 --- a/source +++ b/source @@ -38255,19 +38255,16 @@ interface HTMLTableElement : HTMLElement { steps:

    +
  1. 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.

  2. -
  3. If index is equal to −1, then index must be - set to the number of items in the rows collection, minus - one.

  4. - -
  5. 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.

  6. - -
  7. Otherwise, the method must remove the indexth element in the rows collection from its parent.

    +
  8. 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.

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