* @see https://developer.mozilla.org/en-US/docs/Web/API/Node/cloneNode * @return new Text Node with the same data as the Text to clone.
()
| 36 | * @return new Text Node with the same data as the Text to clone. |
| 37 | */ |
| 38 | public cloneNode(): Text { |
| 39 | return this.ownerDocument.createTextNode(this.data); |
| 40 | } |
| 41 | |
| 42 | /** |
| 43 | * Breaks Text node into two nodes at the specified offset, keeping both nodes in the tree as siblings. |
no test coverage detected