Home | History | Annotate | Download | only in editing

Lines Matching full:child

1393         Node* child = current->firstChild();
1394 while (child) {
1395 Node* nextChild = child->nextSibling();
1398 if (child != targetNode)
1399 applyTextDecorationStyle(child, decoration.get());
1403 if (child == targetNode || child->contains(targetNode))
1404 current = child;
1406 child = nextChild;
1865 Node *child = node->firstChild();
1866 while (child) {
1867 Node *next = child->nextSibling();
1868 if (child->isTextNode() && next && next->isTextNode()) {
1869 Text *childText = static_cast<Text *>(child);
1878 // don't move child node pointer. it may want to merge with more text nodes.
1881 child = child->nextSibling();