Home | History | Annotate | Download | only in editing

Lines Matching full:child

69     for (Node* child = row->firstChild(); child; child = child->nextSibling())
70 if (isTableCell(child) && !isTableCellEmpty(child))
334 RefPtr<Node> child = node->firstChild();
335 while (child) {
336 RefPtr<Node> nextChild = child->nextSibling();
337 removeNode(child.get());
338 // Bail if nextChild is no longer node's child.
341 child = nextChild;
352 Node* child = node->firstChild();
353 while (child) {
354 child;
355 child = child->nextSibling();