Return this element's parent `Element`, or `None`.
(self)
| 630 | |
| 631 | @property |
| 632 | def parent(self): |
| 633 | """ |
| 634 | Return this element's parent `Element`, or `None`. |
| 635 | """ |
| 636 | if is_none(self._dom_element.parentElement): |
| 637 | return None |
| 638 | return Element.wrap_dom_element(self._dom_element.parentElement) |
| 639 | |
| 640 | def append(self, *items): |
| 641 | """ |
nothing calls this directly
no test coverage detected