Skip to content

Allow aria-valuetext for use with combobox role #2417

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16012,11 +16012,14 @@ <h2>Definitions of States and Properties (all aria-* attributes)</h2>
<div class="property" id="aria-valuetext">
<pdef>aria-valuetext</pdef>
<div class="property-description">
<p><a>Defines</a> the human readable text alternative of <pref>aria-valuenow</pref> for a range <a>widget</a>.</p>
<p>
<a>Defines</a> the human readable text alternative of <pref>aria-valuenow</pref> for a range <a>widget</a>, or a text alternative for the value of custom <abbr>ARIA</abbr> or native
widgets that support the attribute.
</p>
<p>This property is used, for example, on a range widget such as a slider or progress bar.</p>
<p>
If the <pref>aria-valuetext</pref> attribute is set, authors SHOULD also set the <pref>aria-valuenow</pref> attribute, unless that value is unknown (for example, on an indeterminate
<rref>progressbar</rref>).
If the <pref>aria-valuetext</pref> attribute is set on a range <a>widget</a>, authors SHOULD also set the <pref>aria-valuenow</pref> attribute, unless that value is unknown (for example,
on an indeterminate <rref>progressbar</rref>).
</p>
<p>
Authors SHOULD only set the <pref>aria-valuetext</pref> attribute when the rendered value cannot be meaningfully represented as a number. For example, a slider might have rendered values
Expand Down