(self)
| 1204 | |
| 1205 | |
| 1206 | def testBug0777884(self): |
| 1207 | doc = parseString("<o>text</o>") |
| 1208 | text = doc.documentElement.childNodes[0] |
| 1209 | self.assertEqual(text.nodeType, Node.TEXT_NODE) |
| 1210 | # Should run quietly, doing nothing. |
| 1211 | text.normalize() |
| 1212 | doc.unlink() |
| 1213 | |
| 1214 | def testBug1433694(self): |
| 1215 | doc = parseString("<o><i/>t</o>") |
nothing calls this directly
no test coverage detected