Home | History | Annotate | Download | only in html5lib

Lines Matching full:node1

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):
950 attributes1 = sorted(node1.attributes.items())