(self)
| 879 | and cn.systemId == sn.systemId) |
| 880 | |
| 881 | def testCloneDocumentTypeDeepNotOk(self): |
| 882 | doc = create_doc_with_doctype() |
| 883 | clone = doc.doctype.cloneNode(1) |
| 884 | self.assertIsNone(clone) |
| 885 | |
| 886 | def testCloneDocumentTypeShallowOk(self): |
| 887 | doctype = create_nonempty_doctype() |
nothing calls this directly
no test coverage detected