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