[html5] r6066 - [e] (0) clarify how to make a determinate and indeterminate progress bar Fixing [...]

whatwg at whatwg.org whatwg at whatwg.org
Wed May 4 15:15:37 PDT 2011


Author: ianh
Date: 2011-05-04 15:15:36 -0700 (Wed, 04 May 2011)
New Revision: 6066

Modified:
   complete.html
   index
   source
Log:
[e] (0) clarify how to make a determinate and indeterminate progress bar
Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=12119

Modified: complete.html
===================================================================
--- complete.html	2011-05-04 22:11:34 UTC (rev 6065)
+++ complete.html	2011-05-04 22:15:36 UTC (rev 6066)
@@ -49021,6 +49021,11 @@
   how much work the task requires in total. The units are arbitrary
   and not specified.</p>
 
+  <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>
+
   <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.</p>

Modified: index
===================================================================
--- index	2011-05-04 22:11:34 UTC (rev 6065)
+++ index	2011-05-04 22:15:36 UTC (rev 6066)
@@ -49049,6 +49049,11 @@
   how much work the task requires in total. The units are arbitrary
   and not specified.</p>
 
+  <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>
+
   <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.</p>

Modified: source
===================================================================
--- source	2011-05-04 22:11:34 UTC (rev 6065)
+++ source	2011-05-04 22:15:36 UTC (rev 6066)
@@ -55142,6 +55142,15 @@
   how much work the task requires in total. The units are arbitrary
   and not specified.</p>
 
+  <p class="note">To make an determinate progress bar, add a <code
+  title="attr-progress-value">value</code> attribute with the current
+  progress (either a number from 0.0 to 1.0, or, if the <code
+  title="attr-progress-max">max</code> attribute is specified, a
+  number from 0 to the value of the <code
+  title="attr-progress-max">max</code> attribute. To make an
+  indeterminate progress bar, remove the <code
+  title="attr-progress-value">value</code> attribute.</p>
+
   <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.</p>




More information about the Commit-Watchers mailing list