Skip to content

Commit

Permalink
[giow] (1) Make :in-range and :out-of-range definitions match the spe…
Browse files Browse the repository at this point in the history
…c that introduced them.

Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=12151

git-svn-id: http://svn.whatwg.org/webapps@6106 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed May 6, 2011
1 parent cd46337 commit 680f63c
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 15 deletions.
14 changes: 9 additions & 5 deletions complete.html
Expand Up @@ -46736,6 +46736,9 @@ <h6 id=the-min-and-max-attributes><span class=secno>4.10.7.2.10 </span>The <code

</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>.</p>

<div class=example>

<p>The following date control limits input to dates that are before
Expand Down Expand Up @@ -54993,9 +54996,9 @@ <h4 id=pseudo-classes><span class=secno>4.14.2 </span>Pseudo-classes</h4>

<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>

Expand All @@ -55006,8 +55009,9 @@ <h4 id=pseudo-classes><span class=secno>4.14.2 </span>Pseudo-classes</h4>

<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>

Expand Down
14 changes: 9 additions & 5 deletions index
Expand Up @@ -46764,6 +46764,9 @@ You cannot submit this form when the field is incorrect.</samp></pre>

</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>.</p>

<div class=example>

<p>The following date control limits input to dates that are before
Expand Down Expand Up @@ -55021,9 +55024,9 @@ contradict people?

<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>

Expand All @@ -55034,8 +55037,9 @@ contradict people?

<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>

Expand Down
16 changes: 11 additions & 5 deletions source
Expand Up @@ -52360,6 +52360,11 @@ You cannot submit this form when the field is incorrect.</samp></pre>

</div>

<p>An element <dfn title="have range limitations">has range
limitations</dfn> if it has a defined <span
title="concept-input-min">minimum</span> or a defined <span
title="concept-input-max">maximum</span>.</p>

<div class="example">

<p>The following date control limits input to dates that are before
Expand Down Expand Up @@ -62128,9 +62133,9 @@ contradict people?
<p>The <code title="selector-in-range">:in-range</code>
pseudo-class must match all elements that are <span
title="candidate for constraint validation">candidates for
constraint validation</span> and that are neither <span>suffering
from an underflow</span> nor <span>suffering from an
overflow</span>.</p>
constraint validation</span>, <span>have range limitations</span>,
and that are neither <span>suffering from an underflow</span> nor
<span>suffering from an overflow</span>.</p>

</dd>

Expand All @@ -62142,8 +62147,9 @@ contradict people?
<p>The <code title="selector-out-of-range">:out-of-range</code>
pseudo-class must match all elements that are <span
title="candidate for constraint validation">candidates for
constraint validation</span> and that are <span>suffering from an
underflow</span> or <span>suffering from an overflow</span>.</p>
constraint validation</span>, <span>have range limitations</span>,
and that are either <span>suffering from an underflow</span> or
<span>suffering from an overflow</span>.</p>

</dd>

Expand Down

0 comments on commit 680f63c

Please sign in to comment.