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

@@ -101,7 +101,7 @@ class TestElements(PyScriptTest):
def test_abbr(self):
abbr = self._create_el_and_basic_asserts("abbr", "some text")
assert abbr.text == "some text"
assert abbr.text_content() == "some text"
def test_element_button(self):
button = self._create_el_and_basic_asserts("button", "click me")