HomeSort by relevance Sort by last modified time
    Searched refs:listChildNode (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/editing/
BreakBlockquoteCommand.cpp 147 Node* listChildNode = i > 1 ? ancestors[i - 2].get() : startNode;
150 while (listChildNode && !listChildNode->hasTagName(liTag))
151 listChildNode = listChildNode->nextSibling();
152 if (listChildNode && listChildNode->renderer() && listChildNode->renderer()->isListItem())
153 setNodeAttribute(clonedChild, startAttr, String::number(toRenderListItem(listChildNode->renderer())->value()));
InsertListCommand.cpp 196 Node* listChildNode = enclosingListChild(selectionNode);
198 if (listChildNode) {
200 RefPtr<HTMLElement> listNode = enclosingList(listChildNode);
202 listNode = fixOrphanedListChild(listChildNode);
206 // listChildNode will be removed from the list and a list of type m_type will be created.
246 unlistifyParagraph(endingSelection().visibleStart(), listNode.get(), listChildNode);
249 if (!listChildNode || switchListType || forceCreateList)
253 void InsertListCommand::unlistifyParagraph(const VisiblePosition& originalStart, HTMLElement* listNode, Node* listChildNode)
259 if (listChildNode->hasTagName(liTag)) {
260 start = firstPositionInNode(listChildNode);
    [all...]
InsertListCommand.h 58 void unlistifyParagraph(const VisiblePosition& originalStart, HTMLElement* listNode, Node* listChildNode);
htmlediting.cpp 718 Node* listChildNode = enclosingListChild(visiblePos.deepEquivalent().deprecatedNode());
719 if (!listChildNode || !isStartOfParagraph(visiblePos) || !isEndOfParagraph(visiblePos))
722 VisiblePosition firstInListChild(firstPositionInOrBeforeNode(listChildNode));
723 VisiblePosition lastInListChild(lastPositionInOrAfterNode(listChildNode));
728 if (embeddedSublist(listChildNode) || appendedSublist(listChildNode))
731 return listChildNode;
    [all...]

Completed in 496 milliseconds