Home | History | Annotate | Download | only in editing

Lines Matching refs:ancestors

132     // Build up list of ancestors in between the start node and the top blockquote.
133 Vector<Element*> ancestors;
135 ancestors.append(node);
141 // Clone startNode's ancestors into the cloned blockquote.
143 // that was cloned (i.e. the clone of either ancestors.last()
144 // or clonedBlockquote if ancestors is empty).
146 for (size_t i = ancestors.size(); i != 0; --i) {
147 RefPtr<Element> clonedChild = ancestors[i - 1]->cloneElementWithoutChildren();
150 Node* listChildNode = i > 1 ? ancestors[i - 2] : startNode;
172 if (!ancestors.isEmpty()) {
179 for (ancestor = ancestors.first(), clonedParent = clonedAncestor->parentElement();
192 Node* originalParent = ancestors.first();