csswg/selectors4 Overview.html,1.53,1.54 Overview.src.html,1.55,1.56

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

Modified Files:
	Overview.html Overview.src.html 
Log Message:
Fix validation errors

Index: Overview.html
===================================================================
RCS file: /sources/public/csswg/selectors4/Overview.html,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -d -r1.53 -r1.54
--- Overview.html	27 Sep 2011 23:05:40 -0000	1.53
+++ Overview.html	27 Sep 2011 23:31:46 -0000	1.54
@@ -1,5 +1,4 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
-"http://www.w3.org/TR/html4/strict.dtd">
+<!DOCTYPE html>
 
 <html lang=en>
  <head>
@@ -50,7 +49,7 @@
     <dd><a href="http://www.w3.org/TR/2011/REC-css3-selectors-20110929/ ">
      http://www.w3.org/TR/2011/REC-css3-selectors-20110929/ </a>
 
-    <dt><a name=editors-list></a>Editors:
+    <dt>Editors:
 
     <dd class=vcard><a class="url fn"
      href="http://fantasai.inkedblade.net/contact">Elika J. Etemad</a>
@@ -97,9 +96,9 @@
    and as such form one of several technologies that can be used to select
    nodes in an XML document. Selectors have been optimized for use with HTML
    and XML, and are designed to be usable in performance-critical code. They
-   are a core component of <acronym title="Cascading Style
-   Sheets">CSS</acronym> (Cascading Style Sheets), which uses Selectors to
-   bind style properties to elements in the document.
+   are a core component of <abbr title="Cascading Style Sheets">CSS</abbr>
+   (Cascading Style Sheets), which uses Selectors to bind style properties to
+   elements in the document.
 
   <p>Selectors Level 4 describes the selectors that already exist in <a
    href="#SELECT" rel=biblioentry>[SELECT]<!--{{!SELECT}}--></a>, and further
@@ -486,10 +485,10 @@
 
   <p>These expressions can also be used, for instance, to select a set of
    elements, or a single element from a set of elements, by evaluating the
-   expression across all the elements in a subtree. <acronym title="Simple
-   Tree Transformation Sheets">STTS</acronym> (Simple Tree Transformation
-   Sheets), a language for transforming XML trees, uses this mechanism. <a
-   href="#STTS3" rel=biblioentry>[STTS3]<!--{{STTS3}}--></a>
+   expression across all the elements in a subtree. <abbr title="Simple Tree
+   Transformation Sheets">STTS</abbr> (Simple Tree Transformation Sheets), a
+   language for transforming XML trees, uses this mechanism. <a href="#STTS3"
+   rel=biblioentry>[STTS3]<!--{{STTS3}}--></a>
 
   <p>Selectors Levels 1, 2, and 3 are defined as the subsets of selector
    functionality defined in the <a
@@ -1153,24 +1152,24 @@
   <h3 id=structure><span class=secno>3.1. </span> Structure and Terminology</h3>
 
   <p>The term <dfn id=selector>selector</dfn> can refer to a <i>simple
-   selector</i>, <i>compound selector</i>, <a
-   href="#complex-selector"><i>complex selector</i></a>, or <a
+   selector</i>, <a href="#compound"><i>compound selector</i></a>, <a
+   href="#complex"><i>complex selector</i></a>, or <a
    href="#selector-list"><i>selector list</i></a>.
 
-  <p>A <dfn id=complex-selector>complex selector</dfn> is a chain of one or
-   more <a href="#compound">compound selectors</a> separated by <a
+  <p>A <dfn id=complex>complex selector</dfn> is a chain of one or more <a
+   href="#compound">compound selectors</a> separated by <a
    href="#combinators">combinators</a>.
 
-  <p>A <dfn id=compound-selector><a name=compound>compound selector</a></dfn>
-   is a chain of <a href="#simple">simple selectors</a> that are not
-   separated by a <a href="#combinators">combinator</a>. It always begins
-   with a <a href="#type-selectors">type selector</a> or a (possibly implied)
-   <a href="#universal-selector">universal selector</a>. No other type
-   selector or universal selector is allowed in the sequence.
+  <p>A <dfn id=compound>compound selector</dfn> is a chain of <a
+   href="#simple">simple selectors</a> that are not separated by a <a
+   href="#combinators">combinator</a>. It always begins with a <a
+   href="#type-selectors">type selector</a> or a (possibly implied) <a
+   href="#universal-selector">universal selector</a>. No other type selector
+   or universal selector is allowed in the sequence.
 
-  <p>A <dfn id=simple-selector><a name=simple></a><a href="#simple">simple
-   selector</a></dfn> is either a <a href="#type-selectors">type
-   selector</a>, <a href="#universal-selector">universal selector</a>, <a
+  <p>A <dfn id=simple><a href="#simple">simple selector</a></dfn> is either a
+   <a href="#type-selectors">type selector</a>, <a
+   href="#universal-selector">universal selector</a>, <a
    href="#attribute-selectors">attribute selector</a>, <a
    href="#class-html">class selector</a>, <a href="#id-selectors">ID
    selector</a>, or <a href="#pseudo-classes">pseudo-class</a>.
@@ -3418,9 +3417,9 @@
 
   <h3 id=lex><span class=secno>16.2. </span> Lexical scanner</h3>
 
-  <p>The following is the <a name=x3>tokenizer</a>, written in Flex (see <a
-   href="#FLEX" rel=biblioentry>[FLEX]<!--{{!FLEX}}--></a>) notation. The
-   tokenizer is case-insensitive.
+  <p>The following is the tokenizer, written in Flex (see <a href="#FLEX"
+   rel=biblioentry>[FLEX]<!--{{!FLEX}}--></a>) notation. The tokenizer is
+   case-insensitive.
 
   <p>The two occurrences of "\377" represent the highest character number
    that current versions of Flex can deal with (decimal 255). They should be

Index: Overview.src.html
===================================================================
RCS file: /sources/public/csswg/selectors4/Overview.src.html,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -d -r1.55 -r1.56
--- Overview.src.html	27 Sep 2011 23:05:40 -0000	1.55
+++ Overview.src.html	27 Sep 2011 23:31:47 -0000	1.56
@@ -1,4 +1,4 @@
-<!DOCTYPE html PUBLIC '-//W3C//DTD HTML 4.01//EN' 'http://www.w3.org/TR/html4/strict.dtd'>
+<!DOCTYPE html>
 <html lang="en">
  <head>
   <title>Selectors Level 4</title>
@@ -42,7 +42,7 @@
                  http://www.w3.org/TR/2011/REC-css3-selectors-20110929/
 </a>
 
-    <dt><a name=editors-list></a>Editors:
+    <dt>Editors:
     <dd class="vcard"><a class="url fn" href="http://fantasai.inkedblade.net/contact">Elika J. Etemad</a> (Mozilla)
 
     <dt>Previous Editors:
@@ -67,7 +67,7 @@
   to select nodes in an XML document. Selectors have been optimized for
   use with HTML and XML, and are designed to be usable in
   performance-critical code. They are a core component of
-  <acronym title="Cascading Style Sheets">CSS</acronym> (Cascading
+  <abbr title="Cascading Style Sheets">CSS</abbr> (Cascading
   Style Sheets), which uses Selectors to bind style properties to
   elements in the document.</p>
 
@@ -107,8 +107,8 @@
   <p>These expressions can also be used, for instance, to select a set
   of elements, or a single element from a set of elements, by
   evaluating the expression across all the elements in a
-  subtree. <acronym title="Simple Tree Transformation
-  Sheets">STTS</acronym> (Simple Tree Transformation Sheets), a
+  subtree. <abbr title="Simple Tree Transformation
+  Sheets">STTS</abbr> (Simple Tree Transformation Sheets), a
   language for transforming XML trees, uses this mechanism. [[STTS3]]</p>
 
   <p>Selectors Levels 1, 2, and 3 are defined as the subsets of selector
@@ -514,21 +514,21 @@
 <h3 id=structure>
 Structure and Terminology</h3>
 
-  <p>The term <dfn>selector</dfn> can refer to a <i>simple selector</i>,
+  <p>The term <dfn id=selector>selector</dfn> can refer to a <i>simple selector</i>,
     <i>compound selector</i>, <i>complex selector</i>, or <i>selector list</i>.
 
-  <p>A <dfn>complex selector</dfn> is a chain of one
+  <p>A <dfn id=complex>complex selector</dfn> is a chain of one
   or more <a href="#compound">compound selectors</a>
   separated by <a href="#combinators">combinators</a>.</p>
 
-  <p>A <dfn><a name=compound>compound selector</a></dfn>
+  <p>A <dfn id=compound>compound selector</dfn>
   is a chain of <a href="#simple">simple selectors</a>
   that are not separated by a <a href="#combinators">combinator</a>. It
   always begins with a <a href="#type-selectors">type selector</a> or a
   (possibly implied) <a href="#universal-selector">universal selector</a>.
   No other type selector or universal selector is allowed in the sequence.</p>
 
-  <p>A <dfn><a name=simple></a><a
+  <p>A <dfn id=simple><a
   href="#simple">simple selector</a></dfn> is either a <a
   href="#type-selectors">type selector</a>, <a
   href="#universal-selector">universal selector</a>, <a
@@ -2609,7 +2609,7 @@
 <h3 id=lex>
 Lexical scanner</h3>
 
-  <p>The following is the <a name=x3>tokenizer</a>, written in Flex (see
+  <p>The following is the tokenizer, written in Flex (see
   [[!FLEX]]) notation. The tokenizer is
   case-insensitive.</p>
 
@@ -2694,7 +2694,7 @@
   <pre>h1 a[name]</pre>
 
   <p>All CSS declarations attached to such a selector are applied to elements
-  matching it. </div>
+  matching it.
 
   <table class="tprofile">
     <caption>CSS Level 1 Selectors Profile</caption>

Received on Tuesday, 27 September 2011 23:31:51 UTC