Home | History | Annotate | Download | only in html5lib

Lines Matching refs:node2

944         def isMatchingFormattingElement(self, node1, node2):
945 if node1.name != node2.name or node1.namespace != node2.namespace:
947 elif len(node1.attributes) != len(node2.attributes):
951 attributes2 = sorted(node2.attributes.items())