LIT-EIA / adapt-esdc-accessibilityfixes

Extension to load and run a .js file when a course loads
GNU General Public License v3.0
5 stars 2 forks source link

Component - Slider - Wai-Aria design pattern issue #26

Open LIT-EIA-OWNER opened 3 years ago

LIT-EIA-OWNER commented 3 years ago

Slider not programmatically associated with the question / label is uses. Does not follow proper wai-aria design pattern for Slider components.

GGD4V commented 3 years ago

There is actually an input element that seem to have all the required WAI-ARIA values: <input type="range" role="slider" value="2" min="1" max="10" aria-valuenow="2" aria-valuemin="1" aria-valuemax="10" data-rangeslider="" data-direction="" step="1" style="position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0;">.

Might only be the ARIA label missing as mentioned.