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

  /external/chromium_org/third_party/WebKit/Source/core/editing/
BreakBlockquoteCommand.cpp 148 Node* listChildNode = i > 1 ? ancestors[i - 2].get() : startNode;
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()));
InsertListCommand.cpp 203 Node* listChildNode = enclosingListChild(selectionNode);
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);
256 if (!listChildNode || switchListType || forceCreateList)
260 void InsertListCommand::unlistifyParagraph(const VisiblePosition& originalStart, HTMLElement* listNode, Node* listChildNode)
266 ASSERT(listChildNode);
267 if (isHTMLLIElement(*listChildNode)) {
    [all...]
InsertListCommand.h 58 void unlistifyParagraph(const VisiblePosition& originalStart, HTMLElement* listNode, Node* listChildNode);
InsertParagraphSeparatorCommand.cpp 167 Node* listChildNode = enclosingListChild(insertionPosition.parentAnchoredEquivalent().containerNode());
168 RefPtrWillBeRawPtr<Element> listChild = listChildNode && listChildNode->isHTMLElement() ? toHTMLElement(listChildNode) : 0;
htmlediting.cpp 691 Node* listChildNode = enclosingListChild(visiblePos.deepEquivalent().deprecatedNode());
692 if (!listChildNode || !isStartOfParagraph(visiblePos) || !isEndOfParagraph(visiblePos))
695 VisiblePosition firstInListChild(firstPositionInOrBeforeNode(listChildNode));
696 VisiblePosition lastInListChild(lastPositionInOrAfterNode(listChildNode));
701 return listChildNode;
    [all...]

Completed in 51 milliseconds