insertCell(index = -1) {
        let row = this.ownerDocument.createElement('td');
        if (index === -1 || index === this.children.length) {
            this.appendChild(row);
        } else if (index < this.children.length) {