|
1 | | -<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" |
2 | | -"http://www.w3.org/TR/html4/strict.dtd"> |
| 1 | +<!DOCTYPE html> |
3 | 2 |
|
4 | 3 | <html lang=en> |
5 | 4 | <head> |
@@ -50,7 +49,7 @@ <h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 27 September |
50 | 49 | <dd><a href="http://www.w3.org/TR/2011/REC-css3-selectors-20110929/ "> |
51 | 50 | http://www.w3.org/TR/2011/REC-css3-selectors-20110929/ </a> |
52 | 51 |
|
53 | | - <dt><a name=editors-list></a>Editors: |
| 52 | + <dt>Editors: |
54 | 53 |
|
55 | 54 | <dd class=vcard><a class="url fn" |
56 | 55 | href="http://fantasai.inkedblade.net/contact">Elika J. Etemad</a> |
@@ -97,9 +96,9 @@ <h2 class="no-num no-toc" id=abstract> Abstract</h2> |
97 | 96 | and as such form one of several technologies that can be used to select |
98 | 97 | nodes in an XML document. Selectors have been optimized for use with HTML |
99 | 98 | and XML, and are designed to be usable in performance-critical code. They |
100 | | - are a core component of <acronym title="Cascading Style |
101 | | - Sheets">CSS</acronym> (Cascading Style Sheets), which uses Selectors to |
102 | | - bind style properties to elements in the document. |
| 99 | + are a core component of <abbr title="Cascading Style Sheets">CSS</abbr> |
| 100 | + (Cascading Style Sheets), which uses Selectors to bind style properties to |
| 101 | + elements in the document. |
103 | 102 |
|
104 | 103 | <p>Selectors Level 4 describes the selectors that already exist in <a |
105 | 104 | href="#SELECT" rel=biblioentry>[SELECT]<!--{{!SELECT}}--></a>, and further |
@@ -486,10 +485,10 @@ <h2 id=context><span class=secno>1. </span> Introduction</h2> |
486 | 485 |
|
487 | 486 | <p>These expressions can also be used, for instance, to select a set of |
488 | 487 | elements, or a single element from a set of elements, by evaluating the |
489 | | - expression across all the elements in a subtree. <acronym title="Simple |
490 | | - Tree Transformation Sheets">STTS</acronym> (Simple Tree Transformation |
491 | | - Sheets), a language for transforming XML trees, uses this mechanism. <a |
492 | | - href="#STTS3" rel=biblioentry>[STTS3]<!--{{STTS3}}--></a> |
| 488 | + expression across all the elements in a subtree. <abbr title="Simple Tree |
| 489 | + Transformation Sheets">STTS</abbr> (Simple Tree Transformation Sheets), a |
| 490 | + language for transforming XML trees, uses this mechanism. <a href="#STTS3" |
| 491 | + rel=biblioentry>[STTS3]<!--{{STTS3}}--></a> |
493 | 492 |
|
494 | 493 | <p>Selectors Levels 1, 2, and 3 are defined as the subsets of selector |
495 | 494 | functionality defined in the <a |
@@ -1153,24 +1152,24 @@ <h2 id=syntax><span class=secno>3. </span> Selector Syntax and Structure</h2> |
1153 | 1152 | <h3 id=structure><span class=secno>3.1. </span> Structure and Terminology</h3> |
1154 | 1153 |
|
1155 | 1154 | <p>The term <dfn id=selector>selector</dfn> can refer to a <i>simple |
1156 | | - selector</i>, <i>compound selector</i>, <a |
1157 | | - href="#complex-selector"><i>complex selector</i></a>, or <a |
| 1155 | + selector</i>, <a href="#compound"><i>compound selector</i></a>, <a |
| 1156 | + href="#complex"><i>complex selector</i></a>, or <a |
1158 | 1157 | href="#selector-list"><i>selector list</i></a>. |
1159 | 1158 |
|
1160 | | - <p>A <dfn id=complex-selector>complex selector</dfn> is a chain of one or |
1161 | | - more <a href="#compound">compound selectors</a> separated by <a |
| 1159 | + <p>A <dfn id=complex>complex selector</dfn> is a chain of one or more <a |
| 1160 | + href="#compound">compound selectors</a> separated by <a |
1162 | 1161 | href="#combinators">combinators</a>. |
1163 | 1162 |
|
1164 | | - <p>A <dfn id=compound-selector><a name=compound>compound selector</a></dfn> |
1165 | | - is a chain of <a href="#simple">simple selectors</a> that are not |
1166 | | - separated by a <a href="#combinators">combinator</a>. It always begins |
1167 | | - with a <a href="#type-selectors">type selector</a> or a (possibly implied) |
1168 | | - <a href="#universal-selector">universal selector</a>. No other type |
1169 | | - selector or universal selector is allowed in the sequence. |
| 1163 | + <p>A <dfn id=compound>compound selector</dfn> is a chain of <a |
| 1164 | + href="#simple">simple selectors</a> that are not separated by a <a |
| 1165 | + href="#combinators">combinator</a>. It always begins with a <a |
| 1166 | + href="#type-selectors">type selector</a> or a (possibly implied) <a |
| 1167 | + href="#universal-selector">universal selector</a>. No other type selector |
| 1168 | + or universal selector is allowed in the sequence. |
1170 | 1169 |
|
1171 | | - <p>A <dfn id=simple-selector><a name=simple></a><a href="#simple">simple |
1172 | | - selector</a></dfn> is either a <a href="#type-selectors">type |
1173 | | - selector</a>, <a href="#universal-selector">universal selector</a>, <a |
| 1170 | + <p>A <dfn id=simple><a href="#simple">simple selector</a></dfn> is either a |
| 1171 | + <a href="#type-selectors">type selector</a>, <a |
| 1172 | + href="#universal-selector">universal selector</a>, <a |
1174 | 1173 | href="#attribute-selectors">attribute selector</a>, <a |
1175 | 1174 | href="#class-html">class selector</a>, <a href="#id-selectors">ID |
1176 | 1175 | selector</a>, or <a href="#pseudo-classes">pseudo-class</a>. |
@@ -3418,9 +3417,9 @@ <h3 id=grammar><span class=secno>16.1. </span> Grammar</h3> |
3418 | 3417 |
|
3419 | 3418 | <h3 id=lex><span class=secno>16.2. </span> Lexical scanner</h3> |
3420 | 3419 |
|
3421 | | - <p>The following is the <a name=x3>tokenizer</a>, written in Flex (see <a |
3422 | | - href="#FLEX" rel=biblioentry>[FLEX]<!--{{!FLEX}}--></a>) notation. The |
3423 | | - tokenizer is case-insensitive. |
| 3420 | + <p>The following is the tokenizer, written in Flex (see <a href="#FLEX" |
| 3421 | + rel=biblioentry>[FLEX]<!--{{!FLEX}}--></a>) notation. The tokenizer is |
| 3422 | + case-insensitive. |
3424 | 3423 |
|
3425 | 3424 | <p>The two occurrences of "\377" represent the highest character number |
3426 | 3425 | that current versions of Flex can deal with (decimal 255). They should be |
|
0 commit comments