(self)
| 890 | and len(clone.childNodes) == 0) |
| 891 | |
| 892 | def testCloneDocumentTypeShallowNotOk(self): |
| 893 | doc = create_doc_with_doctype() |
| 894 | clone = doc.doctype.cloneNode(0) |
| 895 | self.assertIsNone(clone) |
| 896 | |
| 897 | def check_import_document(self, deep, testName): |
| 898 | doc1 = parseString("<doc/>") |
nothing calls this directly
no test coverage detected