(node, wrapper)
| 2976 | } |
| 2977 | |
| 2978 | function jqLiteWrapNode(node, wrapper) { |
| 2979 | var parent = node.parentNode; |
| 2980 | |
| 2981 | if (parent) { |
| 2982 | parent.replaceChild(wrapper, node); |
| 2983 | } |
| 2984 | |
| 2985 | wrapper.appendChild(node); |
| 2986 | } |
| 2987 | |
| 2988 | |
| 2989 | // IE9-11 has no method "contains" in SVG element and in Node.prototype. Bug #10259. |
no outgoing calls
no test coverage detected