(child)
| 69 | } |
| 70 | |
| 71 | function appendChild(child) { |
| 72 | const parentElement = openStack[openStack.length - 1]; |
| 73 | |
| 74 | if (isHTMLTemplateElement(parentElement)) { |
| 75 | parentElement._templateContents._insert(child, null); |
| 76 | } else { |
| 77 | parentElement._insert(child, null); |
| 78 | } |
| 79 | } |
| 80 | |
| 81 | parser.on("text", saxesOptions.fragment ? |
| 82 | // In a fragment, all text events produced by saxes must result in a text |
no test coverage detected
searching dependent graphs…