Skip to content

Commit

Permalink
[] (0) Align more closely with CSS3 UI on selector definitions.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.whatwg.org/webapps@2782 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Feb 11, 2009
1 parent 87c1e10 commit 4c84085
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 8 deletions.
12 changes: 8 additions & 4 deletions index
Expand Up @@ -33601,6 +33601,8 @@ explain that only direct children of the <menu> matter

<li><code><a href=#the-command>command</a></code> elements that do not have a <code title=attr-command-disabled><a href=#attr-command-disabled>disabled</a></code> attribute</li>

<li>any other element, if it is <a href=#focusable>focusable</a></li>

</ul><p class=example>For example, if the user is using a keyboard to
push a <code><a href=#the-button-element>button</a></code> element by pressing the space bar, the
element would match this pseudo-class in between the time that the
Expand Down Expand Up @@ -33829,11 +33831,13 @@ explain that only direct children of the <menu> matter
<p>The <code title=selector-read-write><a href=#selector-read-write>:read-write</a></code>
pseudo-class must match the following elements:</p>

<ul><li>an <code><a href=#the-input-element>input</a></code> element to which the <code title=attr-input-readonly><a href=#attr-input-readonly>readonly</a></code> attribute applies,
but that is not <i title=concept-input-immutable><a href=#concept-input-immutable>immutable</a></i>
(i.e. that does not have the attribute specified)</li>
<ul><li><code><a href=#the-input-element>input</a></code> elements to which the <code title=attr-input-readonly><a href=#attr-input-readonly>readonly</a></code> attribute applies,
but that are not <i title=concept-input-immutable><a href=#concept-input-immutable>immutable</a></i>
(i.e. that do not have the attribute specified), and that are not
<a href=#concept-fe-disabled title=concept-fe-disabled>disabled</a></li>

<li><code><a href=#the-textarea-element>textarea</a></code> elements that do not have a <code title=attr-textarea-readonly><a href=#attr-textarea-readonly>readonly</a></code> attribute</li>
<li><code><a href=#the-textarea-element>textarea</a></code> elements that do not have a <code title=attr-textarea-readonly><a href=#attr-textarea-readonly>readonly</a></code> attribute, and
that are not <a href=#concept-fe-disabled title=concept-fe-disabled>disabled</a></li>

<li>any element that is <a href=#editable>editable</a></li>

Expand Down
13 changes: 9 additions & 4 deletions source
Expand Up @@ -38101,6 +38101,8 @@ explain that only direct children of the <menu> matter
<li><code>command</code> elements that do not have a <code
title="attr-command-disabled">disabled</code> attribute</li>

<li>any other element, if it is <span>focusable</span></li>

</ul>

<p class="example">For example, if the user is using a keyboard to
Expand Down Expand Up @@ -38397,13 +38399,16 @@ explain that only direct children of the <menu> matter

<ul>

<li>an <code>input</code> element to which the <code
<li><code>input</code> elements to which the <code
title="attr-input-readonly">readonly</code> attribute applies,
but that is not <i title="concept-input-immutable">immutable</i>
(i.e. that does not have the attribute specified)</li>
but that are not <i title="concept-input-immutable">immutable</i>
(i.e. that do not have the attribute specified), and that are not
<span title="concept-fe-disabled">disabled</span></li>

<li><code>textarea</code> elements that do not have a <code
title="attr-textarea-readonly">readonly</code> attribute</li>
title="attr-textarea-readonly">readonly</code> attribute, and
that are not <span
title="concept-fe-disabled">disabled</span></li>

<li>any element that is <span>editable</span></li>

Expand Down

0 comments on commit 4c84085

Please sign in to comment.