(namespace, tagName)
| 4389 | } |
| 4390 | |
| 4391 | function createElementNS (namespace, tagName) { |
| 4392 | return document.createElementNS(namespaceMap[namespace], tagName) |
| 4393 | } |
| 4394 | |
| 4395 | function createTextNode (text) { |
| 4396 | return document.createTextNode(text) |
nothing calls this directly
no outgoing calls
no test coverage detected