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