- From: poot <cvsmail@w3.org>
- Date: Wed, 04 May 2011 18:18:45 -0400
- To: public-html-diffs@w3.org
hixie: clarify how to make a determinate and indeterminate progress bar (whatwg r6066) http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.4870&r2=1.4871&f=h http://html5.org/tools/web-apps-tracker?from=6065&to=6066 =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.4870 retrieving revision 1.4871 diff -u -d -r1.4870 -r1.4871 --- Overview.html 4 May 2011 22:11:39 -0000 1.4870 +++ Overview.html 4 May 2011 22:15:41 -0000 1.4871 @@ -37400,7 +37400,10 @@ completion represented by the element. The <dfn id="attr-progress-value" title="attr-progress-value"><code>value</code></dfn> attribute specifies how much of the task has been completed, and the <dfn id="attr-progress-max" title="attr-progress-max"><code>max</code></dfn> attribute specifies how much work the task requires in total. The units are arbitrary - and not specified.<p>Authors are encouraged to also include the current value and the + and not specified.<p class="note">To make an determinate progress bar, add a <code title="attr-progress-value"><a href="#attr-progress-value">value</a></code> attribute with the current + progress (either a number from 0.0 to 1.0, or, if the <code title="attr-progress-max"><a href="#attr-progress-max">max</a></code> attribute is specified, a + number from 0 to the value of the <code title="attr-progress-max"><a href="#attr-progress-max">max</a></code> attribute. To make an + indeterminate progress bar, remove the <code title="attr-progress-value"><a href="#attr-progress-value">value</a></code> attribute.<p>Authors are encouraged to also include the current value and the maximum value inline as text inside the element, so that the progress is made available to users of legacy user agents.<div class="example"> <p>Here is a snippet of a Web application that shows the progress
Received on Wednesday, 4 May 2011 22:18:47 UTC