(node, wrapper)
| 2813 | } |
| 2814 | |
| 2815 | function jqLiteWrapNode(node, wrapper) { |
| 2816 | var parent = node.parentNode; |
| 2817 | |
| 2818 | if (parent) { |
| 2819 | parent.replaceChild(wrapper, node); |
| 2820 | } |
| 2821 | |
| 2822 | wrapper.appendChild(node); |
| 2823 | } |
| 2824 | |
| 2825 | |
| 2826 | // IE9-11 has no method "contains" in SVG element and in Node.prototype. Bug #10259. |
no outgoing calls
no test coverage detected