fix abbr to inherit from TextElementBase

This commit is contained in:
Fabio Pliger
2024-02-27 11:06:09 -06:00
parent c518e7978f
commit 6dccf08834
2 changed files with 2 additions and 2 deletions

View File

@@ -151,7 +151,7 @@ class a(TextElementBase):
_add_js_properties(a, "download", "href", "referrerpolicy", "rel", "target", "type")
class abbr(ElementBase):
class abbr(TextElementBase):
tag = "abbr"