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...">