- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 17 Aug 2011 19:38:22 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv9321 Modified Files: Overview.html Log Message: Make this text actually make sense. (whatwg r6488) Index: Overview.html =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.5189 retrieving revision 1.5190 diff -u -d -r1.5189 -r1.5190 --- Overview.html 17 Aug 2011 19:24:17 -0000 1.5189 +++ Overview.html 17 Aug 2011 19:38:18 -0000 1.5190 @@ -38481,11 +38481,14 @@ <dd> <p>If the <code title="attr-meter-max"><a href="#attr-meter-max">max</a></code> attribute is - specified and a value could be parsed out of it, the maximum value - is that value. Otherwise, the maximum value is 1.0.</p> + specified and a value could be parsed out of it, then the + candidate maximum value is that value. Otherwise, the candidate + maximum value is 1.0.</p> - <p>If the maximum value would be less than the minimum value, then - the maximum value is actually the same as the minimum value.</p> + <p>If the candidate maximum value is greater than or equal to the + minimum value, then the maximum value is the candidate maximum + value. Otherwise, the maximum value is the same as the minimum + value.</p> </dd> @@ -38495,13 +38498,16 @@ <p>If the <code title="attr-meter-value"><a href="#attr-meter-value">value</a></code> attribute is specified and a value could be parsed out of it, then that value - is the actual value. Otherwise, the actual value is zero.</p> + is the candidate actual value. Otherwise, the candidate actual + value is zero.</p> - <p>If the actual value would be less than the minimum value, then - the actual value is actually the same as the minimum value.</p> + <p>If the candidate actual value is less than the minimum value, + then the actual value is the minimum value.</p> - <p>If, on the other hand, the actual value would be greater than - the maximum value, then the actual value is the maximum value.</p> + <p>Otherwise, if the candidate actual value is greater than the + maximum value, then the actual value is the maximum value.</p> + + <p>Otherwise, the actual value is the candidate actual value.</p> </dd> @@ -38510,14 +38516,17 @@ <dd> <p>If the <code title="attr-meter-low"><a href="#attr-meter-low">low</a></code> attribute is - specified and a value could be parsed out of it, then the low - boundary is that value. Otherwise, the low boundary is the same as - the minimum value.</p> + specified and a value could be parsed out of it, then the + candidate low boundary is that value. Otherwise, the candidate low + boundary is the same as the minimum value.</p> - <p>If the low boundary is then less than the minimum value, then - the low boundary is actually the same as the minimum - value. Similarly, if the low boundary is greater than the maximum - value, then it is actually the maximum value instead.</p> + <p>If the candidate low boundary is less than the minimum value, + then the low boundary is the minimum value.</p> + + <p>Otherwise, if the candidate low boundary is greater than the + maximum value, then the low boundary is the maximum value.</p> + + <p>Otherwise, the low boundary is the candidate low boundary.</p> </dd> @@ -38526,14 +38535,17 @@ <dd> <p>If the <code title="attr-meter-high"><a href="#attr-meter-high">high</a></code> attribute is - specified and a value could be parsed out of it, then the high - boundary is that value. Otherwise, the high boundary is the same - as the maximum value.</p> + specified and a value could be parsed out of it, then the + candidate high boundary is that value. Otherwise, the candidate + high boundary is the same as the maximum value.</p> - <p>If the high boundary is then less than the low boundary, then - the high boundary is actually the same as the low - boundary. Similarly, if the high boundary is greater than the - maximum value, then it is actually the maximum value instead.</p> + <p>If the candidate high boundary is less than the low boundary, + then the high boundary is the low boundary.</p> + + <p>Otherwise, if the candidate high boundary is greater than the + maximum value, then the high boundary is the maximum value.</p> + + <p>Otherwise, the high boundary is the candidate high boundary.</p> </dd> @@ -38543,13 +38555,18 @@ <p>If the <code title="attr-meter-optimum"><a href="#attr-meter-optimum">optimum</a></code> attribute is specified and a value could be parsed out of it, then - the optimum point is that value. Otherwise, the optimum point is - the midpoint between the minimum value and the maximum value.</p> + the candidate optimum point is that value. Otherwise, the + candidate optimum point is the midpoint between the minimum value + and the maximum value.</p> - <p>If the optimum point is then less than the minimum value, then - the optimum point is actually the same as the minimum - value. Similarly, if the optimum point is greater than the maximum - value, then it is actually the maximum value instead.</p> + <p>If the candidate optimum point is less than the minimum value, + then the optimum point is the minimum value.</p> + + <p>Otherwise, if the candidate optimum point is greater than the + maximum value, then the optimum point is the maximum value.</p> + + <p>Otherwise, the optimum point is the candidate optimum + point.</p> </dd>
Received on Wednesday, 17 August 2011 19:38:27 UTC