hixie: Make :in-range and :out-of-range definitions match the spec that introduced them. (whatwg r6106)

hixie: Make :in-range and :out-of-range definitions match the spec that
introduced them. (whatwg r6106)

http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.4908&r2=1.4909&f=h
http://html5.org/tools/web-apps-tracker?from=6105&to=6106

===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.4908
retrieving revision 1.4909
diff -u -d -r1.4908 -r1.4909
--- Overview.html 6 May 2011 20:03:31 -0000 1.4908
+++ Overview.html 6 May 2011 20:09:31 -0000 1.4909
@@ -35411,7 +35411,8 @@
   <a href="#suffering-from-an-underflow">suffering from an underflow</a> or <a href="#suffering-from-an-overflow">suffering from an
   overflow</a>.</p>
 
-  </div><div class="example">
+  </div><p>An element <dfn id="have-range-limitations" title="have range limitations">has range
+  limitations</dfn> if it has a defined <a href="#concept-input-min" title="concept-input-min">minimum</a> or a defined <a href="#concept-input-max" title="concept-input-max">maximum</a>.<div class="example">
 
    <p>The following date control limits input to dates that are before
    the 1980s:</p>
@@ -42327,9 +42328,9 @@
 
     <p>The <code title="selector-in-range"><a href="#selector-in-range">:in-range</a></code>
     pseudo-class must match all elements that are <a href="#candidate-for-constraint-validation" title="candidate for constraint validation">candidates for
-    constraint validation</a> and that are neither <a href="#suffering-from-an-underflow">suffering
-    from an underflow</a> nor <a href="#suffering-from-an-overflow">suffering from an
-    overflow</a>.</p>
+    constraint validation</a>, <a href="#have-range-limitations">have range limitations</a>,
+    and that are neither <a href="#suffering-from-an-underflow">suffering from an underflow</a> nor
+    <a href="#suffering-from-an-overflow">suffering from an overflow</a>.</p>
 
    </dd>
 
@@ -42340,8 +42341,9 @@
 
     <p>The <code title="selector-out-of-range"><a href="#selector-out-of-range">:out-of-range</a></code>
     pseudo-class must match all elements that are <a href="#candidate-for-constraint-validation" title="candidate for constraint validation">candidates for
-    constraint validation</a> and that are <a href="#suffering-from-an-underflow">suffering from an
-    underflow</a> or <a href="#suffering-from-an-overflow">suffering from an overflow</a>.</p>
+    constraint validation</a>, <a href="#have-range-limitations">have range limitations</a>,
+    and that are either <a href="#suffering-from-an-underflow">suffering from an underflow</a> or
+    <a href="#suffering-from-an-overflow">suffering from an overflow</a>.</p>
 
    </dd>

Received on Friday, 6 May 2011 20:12:11 UTC