@protected
(token: TagToken, namespaceURI: NS)
| 438 | |
| 439 | /** @protected */ |
| 440 | _insertElement(token: TagToken, namespaceURI: NS): void { |
| 441 | const element = this.treeAdapter.createElement(token.tagName, namespaceURI, token.attrs); |
| 442 | |
| 443 | this._attachElementToTree(element, token.location); |
| 444 | this.openElements.push(element, token.tagID); |
| 445 | } |
| 446 | |
| 447 | /** @protected */ |
| 448 | _insertFakeElement(tagName: string, tagID: $): void { |
no test coverage detected