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