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 150 Node* listChildNode = i > 1 ? ancestors[i - 2].get() : startNode;
153 while (listChildNode && !isHTMLLIElement(*listChildNode))
154 listChildNode = listChildNode->nextSibling();
155 if (listChildNode && listChildNode->renderer() && listChildNode->renderer()->isListItem())
156 setNodeAttribute(clonedChild, startAttr, AtomicString::number(toRenderListItem(listChildNode->renderer())->value()));
InsertListCommand.cpp 209 Node* listChildNode = enclosingListChild(selectionNode);
211 if (listChildNode) {
213 RefPtrWillBeRawPtr<HTMLElement> listElement = enclosingList(listChildNode);
215 listElement = fixOrphanedListChild(listChildNode);
219 // listChildNode will be removed from the list and a list of type m_type will be created.
259 unlistifyParagraph(endingSelection().visibleStart(), listElement.get(), listChildNode);
262 if (!listChildNode || switchListType || forceCreateList)
266 void InsertListCommand::unlistifyParagraph(const VisiblePosition& originalStart, HTMLElement* listElement, Node* listChildNode)
272 ASSERT(listChildNode);
273 if (isHTMLLIElement(*listChildNode)) {
    [all...]
InsertListCommand.h 59 void unlistifyParagraph(const VisiblePosition& originalStart, HTMLElement* listNode, Node* listChildNode);
InsertParagraphSeparatorCommand.cpp 170 Node* listChildNode = enclosingListChild(insertionPosition.parentAnchoredEquivalent().containerNode());
171 RefPtrWillBeRawPtr<HTMLElement> listChild = listChildNode && listChildNode->isHTMLElement() ? toHTMLElement(listChildNode) : 0;
htmlediting.cpp 714 Node* listChildNode = enclosingListChild(visiblePos.deepEquivalent().deprecatedNode());
715 if (!listChildNode || !isStartOfParagraph(visiblePos) || !isEndOfParagraph(visiblePos))
718 VisiblePosition firstInListChild(firstPositionInOrBeforeNode(listChildNode));
719 VisiblePosition lastInListChild(lastPositionInOrAfterNode(listChildNode));
724 return listChildNode;
    [all...]

Completed in 638 milliseconds