From 454b04d1dbbe91323cf2118cda126b28adf5855d Mon Sep 17 00:00:00 2001 From: JaEun Jemma Ku Date: Tue, 2 Jun 2020 12:00:17 -0500 Subject: [PATCH] remove duplicate html spin button example and switch the order of indeterminate progress bar example to the end --- aria-practices.html | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/aria-practices.html b/aria-practices.html index 590c799512..ad2043d096 100644 --- a/aria-practices.html +++ b/aria-practices.html @@ -6633,14 +6633,6 @@

Range properties with progress bars

</svg> </span> </div> - -

- To represent an indeterminate progress bar where the value range is unknown, - omit the aria-valuenow attribute. -

- -
<img role="progressbar" src="spinner.gif" alt="Loading...">
-

The progress bar example can also be made using the native HTML progress element.

@@ -6648,6 +6640,12 @@

Range properties with progress bars

<label for="loadstatus">Loading:</label>
 <progress id="loadstatus" max="100" value="33"></progress>
       
+

+ To represent an indeterminate progress bar where the value range is unknown, + omit the aria-valuenow attribute. +

+ +
<img role="progressbar" src="spinner.gif" alt="Loading...">