Home
last modified time | relevance | path

Searched refs:nextList (Results 1 – 5 of 5) sorted by relevance

/external/webkit/Source/WebCore/editing/
DInsertListCommand.cpp75 RefPtr<HTMLElement> nextList = toHTMLElement(list->nextElementSibling()); in mergeWithNeighboringLists() local
76 if (canMergeLists(list.get(), nextList.get())) { in mergeWithNeighboringLists()
77 mergeIdenticalElements(list, nextList); in mergeWithNeighboringLists()
78 return nextList.release(); in mergeWithNeighboringLists()
343 …Element* nextList = adjacentEnclosingList(start.deepEquivalent(), end.next(CannotCrossEditingBound… in listifyParagraph() local
347 else if (nextList) in listifyParagraph()
348 insertNodeAt(listItemElement, positionBeforeNode(nextList)); in listifyParagraph()
390 if (canMergeLists(previousList, nextList)) in listifyParagraph()
391 mergeIdenticalElements(previousList, nextList); in listifyParagraph()
DIndentOutdentCommand.cpp76 Element* nextList = selectedListItem->nextElementSibling(); in tryIndentingAsListItem() local
85 if (canMergeLists(newList.get(), nextList)) in tryIndentingAsListItem()
86 mergeIdenticalElements(newList, nextList); in tryIndentingAsListItem()
Dhtmlediting.cpp756 while (HTMLElement* nextList = enclosingList(list)) { in outermostEnclosingList() local
757 if (nextList == rootList) in outermostEnclosingList()
759 list = nextList; in outermostEnclosingList()
/external/webkit/Source/WebCore/
DChangeLog-2010-05-2419166 the list element, it updates previousList and nextList to the outermost list elements around
DChangeLog-2007-10-1437916 Ditto for the position after the end and the nextList.