<input>
with required
This is a test case designed to determine how the required
attribute, applied to the <input>
element, is announced by various screen readers.
required
usageIf the required
attribute is applied, the invalid state is also set in accessibility APIs. So, form controls with required
applied are announced as "Invalid entry" or "Invalid data", even before users have interacted with the control. More details on the issue.
Even though native HTML attributes should be used where possible, authors could choose to use aria-required="true"
instead. However, authors should not use aria-invalid="false"
to solve this issue.
However, if the user has not attempted to submit the form, authors SHOULD NOT set the aria-invalid attribute on required widgets simply because the user has not yet entered data.
<div>
<label for="name">Full name</label>
<input required type="text" id="name">
</div>