Home
last modified time | relevance | path

Searched refs:secondList (Results 1 – 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/editing/
Dhtmlediting.cpp765 bool canMergeLists(Element* firstList, Element* secondList) in canMergeLists() argument
767 if (!firstList || !secondList || !firstList->isHTMLElement() || !secondList->isHTMLElement()) in canMergeLists()
770 … return firstList->hasTagName(secondList->tagQName())// make sure the list types match (ol vs. ul) in canMergeLists()
771 … && firstList->rendererIsEditable() && secondList->rendererIsEditable() // both lists are editable in canMergeLists()
772 …&& firstList->rootEditableElement() == secondList->rootEditableElement()// don't cross editing bou… in canMergeLists()
773 …&& isVisiblyAdjacent(positionInParentAfterNode(firstList), positionInParentBeforeNode(secondList)); in canMergeLists()
Dhtmlediting.h211 bool canMergeLists(Element* firstList, Element* secondList);