csswg/selectors4 Overview.src.html,1.51,1.52

Update of /sources/public/csswg/selectors4
In directory hutz:/tmp/cvs-serv29174

Modified Files:
	Overview.src.html 
Log Message:
Small fixes:
- Replaced CSS3SELECT by SELECT
- Replaced SELECT-API2 by SELECTORS-API2
- Added the words "first public Working Draft"
- Fixed several misspelled/unmatched closing tags </code> and </li>
- Added a missing closing tag </a>
- Fixed a duplicate ID


Index: Overview.src.html
===================================================================
RCS file: /sources/public/csswg/selectors4/Overview.src.html,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -d -r1.51 -r1.52
--- Overview.src.html	20 Sep 2011 21:40:35 -0000	1.51
+++ Overview.src.html	27 Sep 2011 17:19:19 -0000	1.52
@@ -63,7 +63,7 @@
   elements in the document.</p>
 
   <p>Selectors Level 4 describes the selectors that already exist in
-  [[!CSS3SELECT]], and further introduces new selectors for CSS and
+  [[!SELECT]], and further introduces new selectors for CSS and
   other languages that may need them.</p>
 
   <h2 class="no-num no-toc" id=status>Status of this Document</h2>
@@ -76,6 +76,8 @@
   Read the <a href="http://www.w3.org/TR/CSS/">CSS Snapshot</a> for
   an overview of the CSS development process.
 
+  <p>This is the first public Working Draft of this new specification.
+
   <h2 class="no-num no-toc" id="contents">Table of Contents</h2>
   <!--toc-->
 
@@ -108,7 +110,7 @@
 
   <p>This module replaces the definitions for, and extends the set of
     selectors defined for CSS
-    in [[CSS3SELECT]] and [[CSS21]].
+    in [[SELECT]] and [[CSS21]].
 
   <p>Pseudo-element selectors, which define abstract elements in a
   rendering tree, are not part of this specification: their generic syntax
@@ -1362,7 +1364,7 @@
       <li>Link 3 would receive Styles 2, 3, and 4
       <li>Link 4 would receive Style 1
       <li>Link 5 would remain unstyled, and Style 5 would not be applied to anything.
-    <ol>
+    </ol>
   </div>
 
   <div class="example">
@@ -1415,7 +1417,7 @@
 
   <p>The <dfn>contextual reference element set</dfn> is a (potentially empty)
   explicitly-specified set of elements, such as that specified by the
-  <code>querySelector()</code> call in [[SELECT-API2]].
+  <code>querySelector()</code> call in [[SELECTORS-API2]].
   Specifications intending for this pseudo-class to match specific elements
   rather than the document's root element must define a contextual reference
   element set.
@@ -1456,7 +1458,7 @@
     user agents that support <a
     href="http://www.w3.org/TR/CSS21/media.html#interactive-media-group">interactive
     media</a> may not be able to support this pseudo-class (e.g., a pen
-    device that does not detect hovering).</li>
+    device that does not detect hovering).
 
   <p>The parent of an element that is <code>:hover</code> is also in
     that state.
@@ -1476,7 +1478,7 @@
     user presses the mouse button and releases it. On systems with more
     than one mouse button, <code>:active</code> applies only to the
     primary or primary activation button (typically the "left" mouse
-    button), and any aliases thereof.</li>
+    button), and any aliases thereof.
 
   <p>There may be document language or implementation specific limits on
   which elements can become <code>:active</code>.</p>
@@ -1487,12 +1489,12 @@
   <p class="note"><strong>Note:</strong> An element can be both
   ':visited' and ':active' (or ':link' and ':active').</p>
 
-<h3 id="active-pseudo">
+<h3 id="focus-pseudo">
 The input focus pseudo-class '':focus''</h3>
 
   <p>The <code>:focus</code> pseudo-class applies while an element
     has the focus (accepts keyboard or mouse events, or other forms of
-    input). </li>
+    input).
 
   <p>There may be document language or implementation specific limits on
   which elements can acquire <code>:focus</code>.</p>
@@ -1530,7 +1532,7 @@
 The past-element pseudo-class '':past''</h3>
 
   <p>The <code>:past</code> pseudo-class represents any element that is
-    defined to occur entirely prior to a <code>:current<code> element.
+    defined to occur entirely prior to a <code>:current</code> element.
     If a time-based order of elements is not defined by the document language,
     then this represents any element that is a (possibly indirect) previous
     sibling of a <code>:current</code> element.
@@ -1539,7 +1541,7 @@
 The future-element pseudo-class '':future''</h3>
 
   <p>The <code>:future</code> pseudo-class represents any element that is
-    defined to occur entirely after a <code>:current<code> element.
+    defined to occur entirely after a <code>:current</code> element.
     If a time-based order of elements is not defined by the document language,
     then this represents any element that is a (possibly indirect) next
     sibling of a <code>:current</code> element.
@@ -1748,7 +1750,7 @@
 The optionality pseudo-classes '':required'' and '':optional''</h3>
 
   <p>A form element is <code id="required-pseudo">:required</code> or
-  <code id="optional-pseudo">:optional<code>
+  <code id="optional-pseudo">:optional</code>
   if a value for it is, respectively, required or optional before the
   form it belongs to can be validly submitted. Elements that are not
   form elements are neither required nor optional.
@@ -2347,7 +2349,7 @@
   <div class="example">
     <p>The following example highlights an <code>&lt;input&gt;</code> element
       when its
-      <a href="http://www.w3.org/TR/html40/interact/forms.html#h-17.9"><code>&lt;label&gt;</code>
+      <a href="http://www.w3.org/TR/html40/interact/forms.html#h-17.9"><code>&lt;label&gt;</code></a>
       is focused or hovered-over:</p>
     <pre>label:matches(:hover, :focus) /for/ input,       /* association by "for" attribute */
 <!--  -->label:matches(:hover, :focus):not([for]) input { /* association by containment */

Received on Tuesday, 27 September 2011 17:19:23 UTC