Returns the errors which are detected while parsing.
(self)
| 87 | return dom |
| 88 | |
| 89 | def errors(self) -> typing.List[str]: |
| 90 | """ |
| 91 | Returns the errors which are detected while parsing. |
| 92 | """ |
| 93 | return self.__raw.errors() |
| 94 | |
| 95 | @property |
| 96 | def quirks_mode(self) -> int: |
no outgoing calls