diff --git a/index.html b/index.html index 0669c51bb..d84d2b3b2 100644 --- a/index.html +++ b/index.html @@ -6585,14 +6585,12 @@
Presentational Roles Conflict Resolution

A graphical object that controls the scrolling of content within a viewing area, regardless of whether the content is fully displayed within the viewing area.

A scrollbar represents the current value and range of possible values via the size of the scrollbar and position of the thumb with respect to the visible range of the orientation (horizontal or vertical) it controls. Its orientation represents the orientation of the scrollbar and the scrolling effect on the viewing area controlled by the scrollbar. It is typically possible to add or subtract to the current value by using directional keys such as arrow keys.

Authors MUST set the aria-controls attribute on the scrollbar element to reference the scrollable area it controls.

-

Authors MUST set the aria-valuemin, aria-valuemax, and aria-valuenow attributes. If missing, their implicit values follow the same rules as the HTML range input type:

+

Authors MAY set aria-valuemin and aria-valuemax to indicate the minimum and maximum thumb position. Otherwise, their implicit values follow the same rules as the HTML range input type:

+

Authors MUST set the aria-valuenow attribute to indicate the current thumb position. If aria-valuenow is missing or has an unexpected value, browsers MAY implement the repair techniques specified in the section describing handling author errors in states and properties, which are equivalent to the repair techniques for the HTML range input type.

Elements with the role scrollbar have an implicit aria-orientation value of vertical.

Assistive technologies generally will render the value of aria-valuenow as a percent of a range between the value of aria-valuemin and aria-valuemax, unless aria-valuetext is specified. It is best to set the values for aria-valuemin, aria-valuemax, and aria-valuenow in a manner that is appropriate for this calculation.

@@ -6643,16 +6641,19 @@
Presentational Roles Conflict Resolution
Supported States and Properties: -   + + + Inherited States and Properties: @@ -6684,7 +6685,6 @@
Presentational Roles Conflict Resolution
Default for aria-orientation is vertical.
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. @@ -12408,20 +12408,10 @@

States and Properties

aria-orientation vertical - - scrollbar - aria-valuemax - 100 - - - scrollbar - aria-valuemin - 0 - scrollbar aria-valuenow - (aria-valuemax - aria-valuemin) / 2 + If missing or not a number,(aria-valuemax - aria-valuemin) / 2. If present but less than aria-valuemin, the value of aria-valuemin. If present but greater than aria-valuemax, the value of aria-valuemax. slider