Searched refs:nextChild (Results 1 – 8 of 8) sorted by relevance
102 RefPtr<Node> nextChild = isFragment ? child->nextSibling() : 0; in insertBefore() local157 child = nextChild.release(); in insertBefore()211 RefPtr<Node> nextChild = isFragment ? child->nextSibling() : 0; in replaceChild() local269 child = nextChild.release(); in replaceChild()455 RefPtr<Node> nextChild = isFragment ? child->nextSibling() : 0; in appendChild() local493 child = nextChild.release(); in appendChild()
101 var nextChild = this.children[index];102 if (nextChild) {103 nextChild.previousSibling = child;104 child.nextSibling = nextChild;
788 var nextChild = this.parent.children[myIndex + 1];790 if (nextChild) {791 nextChild.previousSibling = this;792 this.nextSibling = nextChild;
337 RefPtr<Node> nextChild = child->nextSibling(); in removeNode() local340 if (nextChild && nextChild->parentNode() != node) in removeNode()342 child = nextChild; in removeNode()
1331 Node* nextChild = child->nextSibling(); in pushDownTextDecorationStyleAroundNode() local1342 child = nextChild; in pushDownTextDecorationStyleAroundNode()1623 Node *nextChild = nextElement->firstChild(); in mergeEndWithNextIfIdentical() local1630 int endOffset = nextChild ? nextChild->nodeIndex() : nextElement->childNodes()->length(); in mergeEndWithNextIfIdentical()
284 RefPtr<Node> nextChild; in createContextualFragment() local285 for (RefPtr<Node> child = firstChild; child; child = nextChild) { in createContextualFragment()286 nextChild = child->nextSibling(); in createContextualFragment()
230 nextChild = self.contents[position]231 newChild.nextSibling = nextChild234 newChildsLastElement.next = nextChild
24532 - make nextChild a RefPtr to survive possible DOM changes