You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
1.1 KiB
JavaScript

'use strict';
const {TEXT_NODE} = require('../shared/constants.js');
const {VALUE} = require('../shared/symbols.js');
const {escape} = require('../shared/text-escaper.js');
const {CharacterData} = require('./character-data.js');
/**
* @implements globalThis.Text
*/
class Text extends CharacterData {
constructor(ownerDocument, data = '') {
super(ownerDocument, '#text', TEXT_NODE, data);
}
get wholeText() {
const text = [];
let {previousSibling, nextSibling} = this;
while (previousSibling) {
if (previousSibling.nodeType === TEXT_NODE)
text.unshift(previousSibling[VALUE]);
else
break;
previousSibling = previousSibling.previousSibling;
}
text.push(this[VALUE]);
while (nextSibling) {
if (nextSibling.nodeType === TEXT_NODE)
text.push(nextSibling[VALUE]);
else
break;
nextSibling = nextSibling.nextSibling;
}
return text.join('');
}
cloneNode() {
const {ownerDocument, [VALUE]: data} = this;
return new Text(ownerDocument, data);
}
toString() { return escape(this[VALUE]); }
}
exports.Text = Text