Sha256: 1c9f4e12b11e254c500b2477b9dc98e9400ed1c9ae095bcdeac2c25df2358f18

Contents?: true

Size: 426 Bytes

Versions: 46

Compression:

Stored size: 426 Bytes

Contents

"use strict";

const HTMLElementImpl = require("./HTMLElement-impl").implementation;

class HTMLOListElementImpl extends HTMLElementImpl {
  get start() {
    const value = parseInt(this.getAttributeNS(null, "start"));

    if (!isNaN(value)) {
      return value;
    }

    return 1;
  }
  set start(value) {
    this.setAttributeNS(null, "start", value);
  }
}

module.exports = {
  implementation: HTMLOListElementImpl
};

Version data entries

46 entries across 46 versions & 2 rubygems

Version Path
appmap-0.66.1 ./node_modules/jsdom/lib/jsdom/living/nodes/HTMLOListElement-impl.js
appmap-0.66.0 ./node_modules/jsdom/lib/jsdom/living/nodes/HTMLOListElement-impl.js
appmap-0.65.1 ./node_modules/jsdom/lib/jsdom/living/nodes/HTMLOListElement-impl.js
appmap-0.65.0 ./node_modules/jsdom/lib/jsdom/living/nodes/HTMLOListElement-impl.js
appmap-0.64.0 ./node_modules/jsdom/lib/jsdom/living/nodes/HTMLOListElement-impl.js
appmap-0.63.0 ./node_modules/jsdom/lib/jsdom/living/nodes/HTMLOListElement-impl.js