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

/external/webkit/WebCore/editing/
H A Dhtmlediting.h217 bool canMergeLists(Element* firstList, Element* secondList);
H A Dhtmlediting.cpp824 bool canMergeLists(Element* firstList, Element* secondList) argument
826 if (!firstList || !secondList)
829 return firstList->hasTagName(secondList->tagQName())// make sure the list types match (ol vs. ul)
830 && firstList->isContentEditable() && secondList->isContentEditable()// both lists are editable
831 && firstList->rootEditableElement() == secondList->rootEditableElement()// don't cross editing boundaries
832 && isVisiblyAdjacent(positionInParentAfterNode(firstList), positionInParentBeforeNode(secondList));

Completed in 14 milliseconds