Searched refs:firstList (Results 1 – 2 of 2) sorted by relevance
765 bool canMergeLists(Element* firstList, Element* secondList) in canMergeLists() argument767 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()
211 bool canMergeLists(Element* firstList, Element* secondList);