Searched refs:listChildNode (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DBreakBlockquoteCommand.cpp148 Node* listChildNode = i > 1 ? ancestors[i - 2].get() : startNode; local
151 while (listChildNode && !isHTMLLIElement(*listChildNode))
152 listChildNode = listChildNode->nextSibling();
153 if (listChildNode && listChildNode->renderer() && listChildNode->renderer()->isListItem())
154 setNodeAttribute(clonedChild, startAttr, AtomicString::number(toRenderListItem(listChildNode->renderer())->value()));
H A DInsertListCommand.cpp203 Node* listChildNode = enclosingListChild(selectionNode); local
205 if (listChildNode) {
207 RefPtrWillBeRawPtr<HTMLElement> listNode = enclosingList(listChildNode);
209 listNode = fixOrphanedListChild(listChildNode);
213 // listChildNode will be removed from the list and a list of type m_type will be created.
253 unlistifyParagraph(endingSelection().visibleStart(), listNode.get(), listChildNode); local
256 if (!listChildNode || switchListType || forceCreateList)
260 void InsertListCommand::unlistifyParagraph(const VisiblePosition& originalStart, HTMLElement* listNode, Node* listChildNode) argument
266 ASSERT(listChildNode);
267 if (isHTMLLIElement(*listChildNode)) {
[all...]
H A DInsertListCommand.h58 void unlistifyParagraph(const VisiblePosition& originalStart, HTMLElement* listNode, Node* listChildNode);
H A DInsertParagraphSeparatorCommand.cpp167 Node* listChildNode = enclosingListChild(insertionPosition.parentAnchoredEquivalent().containerNode()); local
168 RefPtrWillBeRawPtr<Element> listChild = listChildNode && listChildNode->isHTMLElement() ? toHTMLElement(listChildNode) : 0;
H A Dhtmlediting.cpp691 Node* listChildNode = enclosingListChild(visiblePos.deepEquivalent().deprecatedNode()); local
692 if (!listChildNode || !isStartOfParagraph(visiblePos) || !isEndOfParagraph(visiblePos))
695 VisiblePosition firstInListChild(firstPositionInOrBeforeNode(listChildNode));
696 VisiblePosition lastInListChild(lastPositionInOrAfterNode(listChildNode));
701 return listChildNode;

Completed in 100 milliseconds