(parent, dom, nextSibling)
| 601 | } |
| 602 | |
| 603 | function insertNode(parent, dom, nextSibling) { |
| 604 | if (nextSibling != null) parent.insertBefore(dom, nextSibling) |
| 605 | else parent.appendChild(dom) |
| 606 | } |
| 607 | |
| 608 | function setContentEditable(vnode) { |
| 609 | var children = vnode.children |
no outgoing calls
no test coverage detected