(self)
| 871 | and cn.systemId == sn.systemId) |
| 872 | |
| 873 | def testCloneDocumentTypeDeepNotOk(self): |
| 874 | doc = create_doc_with_doctype() |
| 875 | clone = doc.doctype.cloneNode(1) |
| 876 | self.assertIsNone(clone) |
| 877 | |
| 878 | def testCloneDocumentTypeShallowOk(self): |
| 879 | doctype = create_nonempty_doctype() |
nothing calls this directly
no test coverage detected