-
Notifications
You must be signed in to change notification settings - Fork 30
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
Is role="slider"
, aria-valuemax
and aria-valuemin
needed?
#191
Comments
I can confirm removing |
I think I only added them because we were having issues with rangeslider and I wanted to make it explicit as to how the slider becomes accessible. They are implied properties of the |
Subject of the issue
Mozilla ARIA slider role best practice states HTML's
<input type="range">
implicitly has therole
ofslider
. Do not usearia-valuemax
oraria-valuemin
attributes on<input type="range">
elements; usemin
andmax
instead. Otherwise, any globalaria-*
attributes and any otheraria-*
attributes applicable to the slider role.Slider already uses
min
andmax
properties but maybe we should removerole="slider"
,aria-valuemax
andaria-valuemin
as suggested?The text was updated successfully, but these errors were encountered: