(self, feature, version)
| 207 | return _clone_node(self, deep, self.ownerDocument or self) |
| 208 | |
| 209 | def isSupported(self, feature, version): |
| 210 | return self.ownerDocument.implementation.hasFeature(feature, version) |
| 211 | |
| 212 | def _get_localName(self): |
| 213 | # Overridden in Element and Attr where localName can be Non-Null |
no test coverage detected