Is role="slider"
, aria-valuemax
and aria-valuemin
needed?
#191
Labels
role="slider"
, aria-valuemax
and aria-valuemin
needed?
#191
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: