You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: index.html
+88
Original file line number
Diff line number
Diff line change
@@ -618,6 +618,7 @@ <h3>Widget Roles</h3>
618
618
<li><rref>menuitem</rref></li>
619
619
<li><rref>menuitemcheckbox</rref></li>
620
620
<li><rref>menuitemradio</rref></li>
621
+
<li><rref>meter</rref></li>
621
622
<li><rref>option</rref></li>
622
623
<!-- FIXME: This is commented out because the ARIA Working Group agreed to move the password role to ARIA 2.0,
623
624
but we've not branched for 1.1 yet. Once we have branched, this section should be deleted from the 1.1
@@ -4051,6 +4052,93 @@ <h4>Plain HTML or Polyfill DOM Result of the MathML Quadratic Formula</h4>
4051
4052
</tbody>
4052
4053
</table>
4053
4054
</div>
4055
+
<div class="role" id="meter">
4056
+
<rdef>meter</rdef>
4057
+
<div class="role-description">
4058
+
<p>An <a>element</a> that represents a scalar measurement within a known range, or a fractional value. See related <rref>progress</rref>.</p>
4059
+
<p>Authors MUST NOT use the <code>meter</code> role to represent a value whose minimum and maximum values are unknown and MUST use <pref>aria-valuemin</pref> and <pref>aria-valuemax</pref> to make these values available to assistive technologies.</p>
4060
+
<p>Authors SHOULD NOT use the <code>meter</code> role to indicate progress; the <rref>progressbar</rref> role exists to address that need.</p>
4061
+
<p class="note">At the present time, there are no <abbr title="Accessible Rich Internet Applications">WAI-ARIA</abbr> properties corresponding to the <code>low</code>, <code>optimum</code>, and <code>high</code> attributes supported on <a href="https://www.w3.org/TR/html50/forms.html#the-meter-element"><abbr title="Hypertext Markup Language">HTML</abbr> <code>meter</code></a>. The addition of these properties will be considered for ARIA version 1.3.</p>
4062
+
<p>Authors wishing to communicate that the displayed value is low, optimum, or high SHOULD do so by including this information in <pref>aria-valuetext</pref>.</p>
0 commit comments