Html attributes.
(self)
| 279 | |
| 280 | @property |
| 281 | def attrs(self) -> dict[str, str | int | float]: |
| 282 | """Html attributes.""" |
| 283 | return self._attribute_token().attrs |
| 284 | |
| 285 | def attrGet(self, name: str) -> None | str | int | float: |
| 286 | """Get the value of attribute `name`, or null if it does not exist.""" |
nothing calls this directly
no test coverage detected