Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[giow] (1) make :indeterminate apply to indeterminate <progress> bars
Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=12210

git-svn-id: http://svn.whatwg.org/webapps@6082 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed May 5, 2011
1 parent 689edfa commit 4855491
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 13 deletions.
15 changes: 11 additions & 4 deletions complete.html
Expand Up @@ -54819,12 +54819,19 @@ <h4 id=pseudo-classes><span class=secno>4.14.2 </span>Pseudo-classes</h4>

<dd>

<!-- does this pseudo-class even exist? -->

<p>The <code title=selector-indeterminate><a href=#selector-indeterminate>:indeterminate</a></code>
pseudo-class must match <code><a href=#the-input-element>input</a></code> elements whose <code title=attr-input-type><a href=#attr-input-type>type</a></code> attribute is in the <a href=#checkbox-state title=attr-input-type-checkbox>Checkbox</a> state and whose
<code title=dom-input-indeterminate><a href=#dom-input-indeterminate>indeterminate</a></code> IDL
attribute is set to true.</p>
pseudo-class must match any element falling into one of the
following categories:</p>

</dd>
<ul><li><code><a href=#the-input-element>input</a></code> elements whose <code title=attr-input-type><a href=#attr-input-type>type</a></code> attribute is in the <a href=#checkbox-state title=attr-input-type-checkbox>Checkbox</a> state and whose
<code title=dom-input-indeterminate><a href=#dom-input-indeterminate>indeterminate</a></code> IDL
attribute is set to true</li>

<li><code><a href=#the-progress-element>progress</a></code> elements with no <code title=attr-progress-value><a href=#attr-progress-value>value</a></code> content attribute</li>

</ul></dd>


<dt><dfn id=selector-default title=selector-default><code>:default</code></dfn></dt>
Expand Down
15 changes: 11 additions & 4 deletions index
Expand Up @@ -54847,12 +54847,19 @@ contradict people?

<dd>

<!-- does this pseudo-class even exist? -->

<p>The <code title=selector-indeterminate><a href=#selector-indeterminate>:indeterminate</a></code>
pseudo-class must match <code><a href=#the-input-element>input</a></code> elements whose <code title=attr-input-type><a href=#attr-input-type>type</a></code> attribute is in the <a href=#checkbox-state title=attr-input-type-checkbox>Checkbox</a> state and whose
<code title=dom-input-indeterminate><a href=#dom-input-indeterminate>indeterminate</a></code> IDL
attribute is set to true.</p>
pseudo-class must match any element falling into one of the
following categories:</p>

</dd>
<ul><li><code><a href=#the-input-element>input</a></code> elements whose <code title=attr-input-type><a href=#attr-input-type>type</a></code> attribute is in the <a href=#checkbox-state title=attr-input-type-checkbox>Checkbox</a> state and whose
<code title=dom-input-indeterminate><a href=#dom-input-indeterminate>indeterminate</a></code> IDL
attribute is set to true</li>

<li><code><a href=#the-progress-element>progress</a></code> elements with no <code title=attr-progress-value><a href=#attr-progress-value>value</a></code> content attribute</li>

</ul></dd>


<dt><dfn id=selector-default title=selector-default><code>:default</code></dfn></dt>
Expand Down
22 changes: 17 additions & 5 deletions source
Expand Up @@ -61927,12 +61927,24 @@ contradict people?

<dd>

<!-- does this pseudo-class even exist? -->

<p>The <code title="selector-indeterminate">:indeterminate</code>
pseudo-class must match <code>input</code> elements whose <code
title="attr-input-type">type</code> attribute is in the <span
title="attr-input-type-checkbox">Checkbox</span> state and whose
<code title="dom-input-indeterminate">indeterminate</code> IDL
attribute is set to true.</p>
pseudo-class must match any element falling into one of the
following categories:</p>

<ul>

<li><code>input</code> elements whose <code
title="attr-input-type">type</code> attribute is in the <span
title="attr-input-type-checkbox">Checkbox</span> state and whose
<code title="dom-input-indeterminate">indeterminate</code> IDL
attribute is set to true</li>

<li><code>progress</code> elements with no <code
title="attr-progress-value">value</code> content attribute</li>

</ul>

</dd>

Expand Down

0 comments on commit 4855491

Please sign in to comment.