From 0b869f95371ef18f2bb4c4a1ea6a7851781f4c40 Mon Sep 17 00:00:00 2001 From: Peter Krautzberger Date: Tue, 11 Jan 2022 13:13:34 +0100 Subject: [PATCH 1/2] progressbar: clarify described-by Resolves #1654 --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 88847f0fc..265ce6910 100644 --- a/index.html +++ b/index.html @@ -6462,7 +6462,7 @@
Note regarding the ARIA 1.1 none role.

The author SHOULD supply a value for aria-valuenow unless the value is indeterminate, in which case the author SHOULD omit the aria-valuenow attribute. - Authors SHOULD update this value when the visual progress indicator is updated. If the progressbar is describing the loading progress of a particular region of a page, the author SHOULD use aria-describedby to point to the status, and set the aria-busy attribute to true on the region until it is finished loading. It is not possible for the user to alter the value of a progressbar because it is always read-only.

+ Authors SHOULD update this value when the visual progress indicator is updated. If the progressbar is describing the loading progress of a particular region of a page, the author SHOULD use aria-describedby on the region to point to the status, and set the aria-busy attribute to true on the region until it is finished loading. It is not possible for the user to alter the value of a progressbar because it is always read-only.

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.

From bc7be545ff17f30f41b305968882653e431d9016 Mon Sep 17 00:00:00 2001 From: Peter Krautzberger Date: Tue, 11 Jan 2022 15:23:35 +0100 Subject: [PATCH 2/2] Update index.html Co-authored-by: Scott O'Hara --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 265ce6910..0c1400a26 100644 --- a/index.html +++ b/index.html @@ -6462,7 +6462,7 @@
Note regarding the ARIA 1.1 none role.

The author SHOULD supply a value for aria-valuenow unless the value is indeterminate, in which case the author SHOULD omit the aria-valuenow attribute. - Authors SHOULD update this value when the visual progress indicator is updated. If the progressbar is describing the loading progress of a particular region of a page, the author SHOULD use aria-describedby on the region to point to the status, and set the aria-busy attribute to true on the region until it is finished loading. It is not possible for the user to alter the value of a progressbar because it is always read-only.

+ Authors SHOULD update this value when the visual progress indicator is updated. If the progressbar is describing the loading progress of a particular region of a page, authors SHOULD both use aria-describedby to reference the progressbar status, and set the aria-busy attribute to true on the region until it is finished loading. It is not possible for the user to alter the value of a progressbar because it is always read-only.

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.