Sha256: b19a987c003aac2c675f1db486f9602e1e1bca184c6790a6cc9985688d2bec27
Contents?: true
Size: 1.08 KB
Versions: 20
Compression:
Stored size: 1.08 KB
Contents
"use strict"; const DOMException = require("domexception/webidl2js-wrapper"); const NODE_TYPE = require("../node-type"); const AbstractRangeImpl = require("./AbstractRange-impl").implementation; // https://dom.spec.whatwg.org/#staticrange class StaticRangeImpl extends AbstractRangeImpl { // https://dom.spec.whatwg.org/#dom-staticrange-staticrange constructor(globalObject, args) { const { startContainer, startOffset, endContainer, endOffset } = args[0]; if ( startContainer.nodeType === NODE_TYPE.DOCUMENT_TYPE_NODE || startContainer.nodeType === NODE_TYPE.ATTRIBUTE_NODE || endContainer.nodeType === NODE_TYPE.DOCUMENT_TYPE_NODE || endContainer.nodeType === NODE_TYPE.ATTRIBUTE_NODE ) { throw DOMException.create(globalObject, ["The supplied node is incorrect.", "InvalidNodeTypeError"]); } super(globalObject, [], { start: { node: startContainer, offset: startOffset }, end: { node: endContainer, offset: endOffset } }); } } module.exports = { implementation: StaticRangeImpl };
Version data entries
20 entries across 20 versions & 1 rubygems