[html5] r2485 - [] (0) Oops, boundary checking on <meter> was off. (credit: ab)
whatwg at whatwg.org
whatwg at whatwg.org
Sat Nov 29 23:13:36 PST 2008
Author: ianh
Date: 2008-11-29 23:13:36 -0800 (Sat, 29 Nov 2008)
New Revision: 2485
Modified:
index
source
Log:
[] (0) Oops, boundary checking on <meter> was off. (credit: ab)
Modified: index
===================================================================
--- index 2008-11-30 07:08:30 UTC (rev 2484)
+++ index 2008-11-30 07:13:36 UTC (rev 2485)
@@ -12843,7 +12843,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>
@@ -13034,8 +13034,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>
@@ -13048,8 +13050,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>
@@ -13069,8 +13073,8 @@
</dd>
- </dl><p>All of which should result in the following inequalities all
- being true:</p>
+ </dl><p>All of which will result in the following inequalities all being
+ true:</p>
<ul class=brief><li>minimum value ≤ actual value ≤ maximum value</li>
<li>minimum value ≤ low boundary ≤ high boundary ≤ maximum value</li>
Modified: source
===================================================================
--- source 2008-11-30 07:08:30 UTC (rev 2484)
+++ source 2008-11-30 07:13:36 UTC (rev 2485)
@@ -13715,7 +13715,7 @@
<dt>There are no numbers in the contents of the element, and the
<code title="attr-meter-value">value</code> attribute is
- specified.</dt>
+ specified</dt>
<dd>
@@ -13930,8 +13930,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>
@@ -13944,8 +13946,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>
@@ -13967,8 +13971,8 @@
</dl>
- <p>All of which should result in the following inequalities all
- being true:</p>
+ <p>All of which will result in the following inequalities all being
+ true:</p>
<ul class="brief">
<li>minimum value ≤ actual value ≤ maximum value</li>
More information about the Commit-Watchers
mailing list