html5/spec Overview.html,1.4632,1.4633

Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv32236

Modified Files:
	Overview.html 
Log Message:
clarify :read-write (whatwg r5769)

Index: Overview.html
===================================================================
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 Tuesday, 11 January 2011 19:51:44 UTC