Searched refs:secondList (Results 1 – 2 of 2) sorted by relevance
824 bool canMergeLists(Element* firstList, Element* secondList) in canMergeLists() argument826 if (!firstList || !secondList) in canMergeLists()829 … return firstList->hasTagName(secondList->tagQName())// make sure the list types match (ol vs. ul) in canMergeLists()830 && firstList->isContentEditable() && secondList->isContentEditable()// both lists are editable in canMergeLists()831 …&& firstList->rootEditableElement() == secondList->rootEditableElement()// don't cross editing bou… in canMergeLists()832 …&& isVisiblyAdjacent(positionInParentAfterNode(firstList), positionInParentBeforeNode(secondList)); in canMergeLists()
217 bool canMergeLists(Element* firstList, Element* secondList);