(ns, type)
| 188 | |
| 189 | |
| 190 | function createElementNS(ns, type) { |
| 191 | let element = createElement(type); |
| 192 | element.namespace = ns; |
| 193 | return element; |
| 194 | } |
| 195 | |
| 196 | |
| 197 | function createTextNode(text) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…