- From: poot <cvsmail@w3.org>
- Date: Tue, 11 Jan 2011 21:43:57 -0500
- To: public-html-diffs@w3.org
hixie: clarify :read-write (whatwg r5769) http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.4632&r2=1.4633&f=h http://html5.org/tools/web-apps-tracker?from=5768&to=5769 =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.4632 retrieving revision 1.4633 diff -u -d -r1.4632 -r1.4633 --- Overview.html 11 Jan 2011 19:36:40 -0000 1.4632 +++ Overview.html 11 Jan 2011 19:51:38 -0000 1.4633 @@ -41379,9 +41379,9 @@ <dd> <p>The <code title="selector-active"><a href="#selector-active">:active</a></code> pseudo-class - must match the following elements between the time the user begins - to activate the element and the time the user stops activating - the element:</p> + must match any element falling into one of the following + categories between the time the user begins to activate the + element and the time the user stops activating the element:</p> <ul><li><code><a href="#the-a-element">a</a></code> elements that have an <code title="attr-hyperlink-href"><a href="#attr-hyperlink-href">href</a></code> attribute</li> @@ -41395,8 +41395,7 @@ <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="#specially-focusable">specially - focusable</a></li> + <li>elements that are <a href="#specially-focusable">specially 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 @@ -41412,7 +41411,8 @@ <dd> <p>The <code title="selector-enabled"><a href="#selector-enabled">:enabled</a></code> pseudo-class - must match the following elements:</p> + must match any element falling into one of the following + categories:</p> <ul><li><code><a href="#the-a-element">a</a></code> elements that have an <code title="attr-hyperlink-href"><a href="#attr-hyperlink-href">href</a></code> attribute</li> @@ -41448,7 +41448,8 @@ <dd> <p>The <code title="selector-disabled"><a href="#selector-disabled">:disabled</a></code> - pseudo-class must match the following elements:</p> + pseudo-class must match any element falling into one of the + following categories:</p> <ul><li><code><a href="#the-button-element">button</a></code> elements that are <a href="#concept-fe-disabled" title="concept-fe-disabled">disabled</a></li> @@ -41478,7 +41479,8 @@ <dd> <p>The <code title="selector-checked"><a href="#selector-checked">:checked</a></code> pseudo-class - must match the following elements:</p> + must match any element falling into one of the following + categories:</p> <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 <a href="#concept-fe-checked" title="concept-fe-checked">checkedness</a> state is @@ -41519,7 +41521,8 @@ <dd> <p>The <code title="selector-default"><a href="#selector-default">:default</a></code> pseudo-class - must match the following elements:</p> + must match any element falling into one of the following + categories:</p> <ul><li><code><a href="#the-button-element">button</a></code> elements that are their form's <a href="#default-button">default button</a></li> @@ -41595,7 +41598,8 @@ <dd> <p>The <code title="selector-required"><a href="#selector-required">:required</a></code> - pseudo-class must match the following elements:</p> + pseudo-class must match any element falling into one of the + following categories:</p> <ul><li><code><a href="#the-input-element">input</a></code> elements that are <i title="concept-input-required"><a href="#concept-input-required">required</a></i></li> @@ -41613,7 +41617,8 @@ <dd> <p>The <code title="selector-optional"><a href="#selector-optional">:optional</a></code> - pseudo-class must match the following elements:</p> + pseudo-class must match any element falling into one of the + following categories:</p> <ul><li><code><a href="#the-input-element">input</a></code> elements to which the <code title="attr-input-required"><a href="#attr-input-required">required</a></code> attribute applies that are not <i title="concept-input-required"><a href="#concept-input-required">required</a></i></li> @@ -41632,7 +41637,8 @@ <dd> <p>The <code title="selector-read-write"><a href="#selector-read-write">:read-write</a></code> - pseudo-class must match the following elements:</p> + pseudo-class must match any element falling into one of the + following categories:</p> <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> @@ -41642,7 +41648,9 @@ <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> + <li>elements that are <a href="#editable">editable</a> and is neither an + <code><a href="#the-input-element">input</a></code> element nor a <code><a href="#the-textarea-element">textarea</a></code> + element</li> </ul><p>The <code title="selector-read-only"><a href="#selector-read-only">:read-only</a></code> pseudo-class must match all other <a href="#html-elements">HTML elements</a>.</p>
Received on Wednesday, 12 January 2011 02:43:59 UTC