diff --git a/index.html b/index.html index 8c0950d67..eab8449cc 100644 --- a/index.html +++ b/index.html @@ -6585,14 +6585,12 @@
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
Authors MUST set the
Authors MAY set
aria-valuemin
is missing or not a number, it defaults to 0 (zero). aria-valuemax
is missing or not a number, it defaults to 100. aria-valuenow
is missing or not a number, it defaults to the value half way between aria-valuemin
and aria-valuemax
. aria-valuenow
is present but less than aria-valuemin
, it defaults to the value of aria-valuemin
. aria-valuenow
is present but greater than aria-valuemax
, it defaults to the value of aria-valuemax
. aria-valuemin
is missing or not a number, it defaults to 0 (zero).aria-valuemax
is missing or not a number, it defaults to 100.Authors MUST set the
Elements with the role scrollbar
have an implicit vertical
.
Assistive technologies generally will render the value of
vertical
. 0
. 100
. aria-valuemax
and aria-valuemin
.
vertical
100
0
(aria-valuemax - aria-valuemin) / 2
(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
.