- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Sun, 30 Nov 2008 07:13:43 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv19826
Modified Files:
Overview.html
Log Message:
Oops, boundary checking on <meter> was off. (credit: ab) (whatwg r2485)
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.1655
retrieving revision 1.1656
diff -u -d -r1.1655 -r1.1656
--- Overview.html 30 Nov 2008 07:08:35 -0000 1.1655
+++ Overview.html 30 Nov 2008 07:13:40 -0000 1.1656
@@ -10499,7 +10499,7 @@
<dt>There are no numbers in the contents of the element, and the
<code title=attr-meter-value><a href=#attr-meter-value>value</a></code> attribute is
- specified.</dt>
+ specified</dt>
<dd>
@@ -10672,8 +10672,10 @@
boundary is that value. Otherwise, the low boundary is the same as
the minimum value.</p>
- <p>If the above results in a low boundary that is less than the
- minimum value, the low boundary is 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>
</dd>
@@ -10686,8 +10688,10 @@
boundary is that value. Otherwise, the high boundary is the same
as the maximum value.</p>
- <p>If the above results in a high boundary that is higher than the
- maximum value, the high boundary is 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>
</dd>
@@ -10707,8 +10711,8 @@
</dd>
- </dl><p>All of which should result in the following inequalities all
- being true:<ul class=brief><li>minimum value ≤ actual value ≤ maximum value</li>
+ </dl><p>All of which will result in the following inequalities all being
+ true:<ul class=brief><li>minimum value ≤ actual value ≤ maximum value</li>
<li>minimum value ≤ low boundary ≤ high boundary ≤ maximum value</li>
<li>minimum value ≤ optimum point ≤ maximum value</li>
</ul><p><strong>UA requirements for regions of the gauge</strong>: If the
Received on Sunday, 30 November 2008 07:13:54 UTC