Sha256: 03703f246eae06c8bd56074ad481b401bdca26aaf3821e52dccab8ce664d1883

Contents?: true

Size: 1.6 KB

Versions: 20

Compression:

Stored size: 1.6 KB

Contents

"use strict";

const HTMLElementImpl = require("./HTMLElement-impl").implementation;
const { childrenByLocalName } = require("../helpers/traversal");
const HTMLCollection = require("../generated/HTMLCollection");
const DOMException = require("domexception/webidl2js-wrapper");

class HTMLTableSectionElementImpl extends HTMLElementImpl {
  get rows() {
    if (!this._rows) {
      this._rows = HTMLCollection.createImpl(this._globalObject, [], {
        element: this,
        query: () => childrenByLocalName(this, "tr")
      });
    }
    return this._rows;
  }

  insertRow(index) {
    if (index < -1 || index > this.rows.length) {
      throw DOMException.create(this._globalObject, [
        "Cannot insert a row at an index that is less than -1 or greater than the number of existing rows",
        "IndexSizeError"
      ]);
    }

    const tr = this._ownerDocument.createElement("tr");

    if (index === -1 || index === this.rows.length) {
      this._append(tr);
    } else {
      const beforeTR = this.rows.item(index);
      this._insert(tr, beforeTR);
    }

    return tr;
  }

  deleteRow(index) {
    if (index < -1 || index >= this.rows.length) {
      throw DOMException.create(this._globalObject, [
        `Cannot delete a row at index ${index}, where no row exists`,
        "IndexSizeError"
      ]);
    }

    if (index === -1) {
      if (this.rows.length > 0) {
        const tr = this.rows.item(this.rows.length - 1);
        this._remove(tr);
      }
    } else {
      const tr = this.rows.item(index);
      this._remove(tr);
    }
  }
}

module.exports = {
  implementation: HTMLTableSectionElementImpl
};

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
appmap-0.72.2 ./node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableSectionElement-impl.js
appmap-0.72.1 ./node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableSectionElement-impl.js
appmap-0.72.0 ./node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableSectionElement-impl.js
appmap-0.71.0 ./node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableSectionElement-impl.js
appmap-0.70.2 ./node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableSectionElement-impl.js
appmap-0.70.1 ./node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableSectionElement-impl.js
appmap-0.70.0 ./node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableSectionElement-impl.js
appmap-0.69.0 ./node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableSectionElement-impl.js
appmap-0.68.2 ./node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableSectionElement-impl.js
appmap-0.68.1 ./node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableSectionElement-impl.js
appmap-0.68.0 ./node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableSectionElement-impl.js
appmap-0.67.1 ./node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableSectionElement-impl.js
appmap-0.67.0 ./node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableSectionElement-impl.js
appmap-0.66.2 ./node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableSectionElement-impl.js
appmap-0.66.1 ./node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableSectionElement-impl.js
appmap-0.66.0 ./node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableSectionElement-impl.js
appmap-0.65.1 ./node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableSectionElement-impl.js
appmap-0.65.0 ./node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableSectionElement-impl.js
appmap-0.64.0 ./node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableSectionElement-impl.js
appmap-0.63.0 ./node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableSectionElement-impl.js