From 72d4ff0ba8bac7ffad47295fc3969aada4d30800 Mon Sep 17 00:00:00 2001 From: Melanie Richards Date: Wed, 22 May 2019 19:03:19 -0700 Subject: [PATCH] Remove aria-valuenow repair techniques from inline in the slider role --- index.html | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/index.html b/index.html index 9734fdd44..4782b4efe 100644 --- a/index.html +++ b/index.html @@ -6920,19 +6920,14 @@
Presentational Roles Conflict Resolution
slider
-

A user input where the user selects a value from within a given range.

+

An input where the user selects a value from within a given range.

A slider represents the current value and range of possible values via the size of the slider and position of the thumb. It is typically possible to add or subtract to the value by using directional keys such as arrow keys.

Authors MAY set the aria-valuemin and aria-valuemax attributes. Otherwise, their implicit values follow the same rules as the HTML range input type:

  • If aria-valuemin is missing or not a number, it defaults to 0 (zero).
  • If aria-valuemax is missing or not a number, it defaults to 100.
-

Authors MUST set the aria-valuenow attribute. If missing, the repair techniques follow the same rules as the HTML range input type:

-
    -
  • If aria-valuenow is missing or not a number, it defaults to the value half way between aria-valuemin and aria-valuemax.
  • -
  • If aria-valuenow is present but less than aria-valuemin, it defaults to the value of aria-valuemin.
  • -
  • If aria-valuenow is present but greater than aria-valuemax, it defaults to the value of aria-valuemax.
  • -
+

Authors MUST set the aria-valuenow attribute.

Elements with the role slider have an implicit aria-orientation value of horizontal.

@@ -7023,8 +7018,7 @@
Presentational Roles Conflict Resolution
Default for aria-orientation is horizontal.
Default for aria-valuemin is 0.
- Default for aria-valuemax is 100.
- Default for aria-valuenow is half way between aria-valuemax and aria-valuemin. + Default for aria-valuemax is 100.