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

/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLConstructionSite.cpp135 Node* previousChild = task.nextChild ? task.nextChild->previousSibling() : task.parent->lastChild(); local
136 if (previousChild && previousChild->isTextNode()) {
137 Text* previousText = toText(previousChild);
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DContainerNode.cpp574 void ContainerNode::removeBetween(Node* previousChild, Node* nextChild, Node& oldChild) argument
584 nextChild->setPreviousSibling(previousChild);
585 if (previousChild)
586 previousChild->setNextSibling(nextChild);
590 m_lastChild = previousChild;

Completed in 96 milliseconds