(doc, tag, ns)
| 123198 | } |
| 123199 | // create a new DOM element |
| 123200 | function domCreate(doc, tag, ns) { |
| 123201 | if (!doc && typeof document !== "undefined" && document.createElement) doc = document; |
| 123202 | return doc ? ns ? doc.createElementNS(ns, tag) : doc.createElement(tag) : null; |
| 123203 | } // find first child element with matching tag |
| 123204 | function domFind(el, tag) { |
| 123205 | tag = tag.toLowerCase(); |
| 123206 | var nodes = el.childNodes, i = 0, n = nodes.length; |
no outgoing calls
no test coverage detected