Searched defs:previousChild (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLConstructionSite.cpp133 Node* previousChild = task.nextChild ? task.nextChild->previousSibling() : task.parent->lastChild(); local
134 if (previousChild && previousChild->isTextNode()) {
135 Text* previousText = toText(previousChild);
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DContainerNode.cpp491 void ContainerNode::removeBetween(Node* previousChild, Node* nextChild, Node& oldChild) argument
501 nextChild->setPreviousSibling(previousChild);
502 if (previousChild)
503 previousChild->setNextSibling(nextChild);
507 m_lastChild = previousChild;

Completed in 137 milliseconds