| 1417 | "cannot replace children of an entity node") |
| 1418 | |
| 1419 | class Notation(Identified, Childless, Node): |
| 1420 | nodeType = Node.NOTATION_NODE |
| 1421 | nodeValue = None |
| 1422 | |
| 1423 | def __init__(self, name, publicId, systemId): |
| 1424 | self.nodeName = name |
| 1425 | self._identified_mixin_init(publicId, systemId) |
| 1426 | |
| 1427 | |
| 1428 | class DOMImplementation(DOMImplementationLS): |
no outgoing calls
no test coverage detected
searching dependent graphs…