mirror of
https://github.com/django/django.git
synced 2025-01-03 06:55:47 +00:00
Refs #32819 -- Added aria-describedby test for widgets with custom id.
This commit is contained in:
parent
292f1ea90f
commit
557fa51837
@ -3097,6 +3097,23 @@ Options: <select multiple name="options" aria-invalid="true" required>
|
||||
"</span></td></tr>",
|
||||
)
|
||||
|
||||
def test_aria_describedby_custom_widget_id(self):
|
||||
class UserRegistration(Form):
|
||||
username = CharField(
|
||||
max_length=255,
|
||||
help_text="e.g., user@example.com",
|
||||
widget=TextInput(attrs={"id": "custom-id"}),
|
||||
)
|
||||
|
||||
f = UserRegistration()
|
||||
self.assertHTMLEqual(
|
||||
str(f),
|
||||
'<div><label for="custom-id">Username:</label>'
|
||||
'<div class="helptext" id="id_username_helptext">e.g., user@example.com'
|
||||
'</div><input type="text" name="username" id="custom-id" maxlength="255" '
|
||||
'required aria-describedby="id_username_helptext"></div>',
|
||||
)
|
||||
|
||||
def test_as_widget_custom_aria_describedby(self):
|
||||
class FoodForm(Form):
|
||||
intl_name = CharField(help_text="The food's international name.")
|
||||
|
Loading…
Reference in New Issue
Block a user