Skip to content

Commit d77e291

Browse files
committed
[css2] Generated. Do not edit!
--HG-- extra : convert_revision : svn%3A73dc7c4b-06e6-40f3-b4f7-9ed1dbc14bfc/trunk%402792
1 parent 553234d commit d77e291

53 files changed

Lines changed: 7528 additions & 2882 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

css2/changes.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ <h3 id="c4.4"><a name="q26">C.2.19 </a><a href="syndata.html#encoding">Section 4
511511

512512
<p>Added requirement to support for UTF-8 at minimum.</p>
513513

514-
<p>Specified that nay @charset rule not at the beginning of the style sheet
514+
<p>Specified that any @charset rule not at the beginning of the style sheet
515515
must be ignored.</p>
516516

517517
<p>Removed note on theoretical problem with @charset problem and precisely
@@ -1341,7 +1341,7 @@ <h3 id="c16.3.1"><a name="q111">C.2.104 </a><a href="text.html#lining-striking-p
13411341
<p>More precisely defined what boxes are affected by text decorations
13421342
specified on a given element.</p>
13431343

1344-
<p>Specified that underlines, overlines, and line-throughs apply ony to
1344+
<p>Specified that underlines, overlines, and line-throughs apply only to
13451345
text.</p>
13461346

13471347
<p>Specified that an underline, overline, or line-through applied across

css2/cover.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,12 @@ <h2 id=status>Status of this document</h2>
152152
this: &#8220;[CSS21] <em>&hellip;summary of
153153
comment&hellip;</em>&#8221;</p>
154154

155+
<p>A list of changes since
156+
the <a href="/TR/2006/WD-CSS21-20061106">last Working Draft</a> is
157+
available in the
158+
<a href="/Style/css2-updates/issues-4-20061106.html">Disposition of
159+
Comments</a>.</p>
160+
155161
<p>This document was produced by the <a
156162
href="/Style/CSS/members">CSS Working Group</a> (part
157163
of the <a href="/Style/">Style Activity</a>).

css2/css2.html

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,12 @@ <h2 id=status>Status of this document</h2>
147147
this: &#8220;[CSS21] <em>&hellip;summary of
148148
comment&hellip;</em>&#8221;</p>
149149

150+
<p>A list of changes since
151+
the <a href="/TR/2006/WD-CSS21-20061106">last Working Draft</a> is
152+
available in the
153+
<a href="/Style/css2-updates/issues-4-20061106.html">Disposition of
154+
Comments</a>.</p>
155+
150156
<p>This document was produced by the <a
151157
href="/Style/CSS/members">CSS Working Group</a> (part
152158
of the <a href="/Style/">Style Activity</a>).
@@ -2611,7 +2617,7 @@ <h3>4.1.1 <a name="tokenization">Tokenization</a></h3>
26112617
block : '{' S* [ any | block | ATKEYWORD S* | ';' S* ]* '}' S*;
26122618
ruleset : selector? '{' S* declaration? [ ';' S* declaration? ]* '}' S*;
26132619
selector : any+;
2614-
declaration : DELIM? property S* ':' S* value;
2620+
declaration : property S* ':' S* value;
26152621
property : IDENT;
26162622
value : [ any | block | ATKEYWORD S* ]+;
26172623
any : [ IDENT | NUMBER | PERCENTAGE | DIMENSION | STRING
@@ -19510,7 +19516,7 @@ <h3 id="c4.4"><a name="q26">C.2.19 </a><a href="syndata.html#encoding">Section 4
1951019516

1951119517
<p>Added requirement to support for UTF-8 at minimum.</p>
1951219518

19513-
<p>Specified that nay @charset rule not at the beginning of the style sheet
19519+
<p>Specified that any @charset rule not at the beginning of the style sheet
1951419520
must be ignored.</p>
1951519521

1951619522
<p>Removed note on theoretical problem with @charset problem and precisely
@@ -20340,7 +20346,7 @@ <h3 id="c16.3.1"><a name="q111">C.2.104 </a><a href="text.html#lining-striking-p
2034020346
<p>More precisely defined what boxes are affected by text decorations
2034120347
specified on a given element.</p>
2034220348

20343-
<p>Specified that underlines, overlines, and line-throughs apply ony to
20349+
<p>Specified that underlines, overlines, and line-throughs apply only to
2034420350
text.</p>
2034520351

2034620352
<p>Specified that an underline, overline, or line-through applied across
@@ -23441,7 +23447,7 @@ <h2>G.1 <a name="grammar">Grammar</a></h2>
2344123447
combinator
2344223448
: PLUS S*
2344323449
| GREATER S*
23444-
| S
23450+
| S+
2344523451
;
2344623452
unary_operator
2344723453
: '-' | PLUS
@@ -23564,7 +23570,6 @@ <h2>G.2 <a name="scanner">Lexical scanner</a></h2>
2356423570
{s} {return S;}
2356523571

2356623572
\/\*[^*]*\*+([^/*][^*]*\*+)*\/ /* ignore comments */
23567-
{s}+\/\*[^*]*\*+([^/*][^*]*\*+)*\/ {unput(' '); /*replace by space*/}
2356823573

2356923574
"&lt;!--" {return CDO;}
2357023575
"-->" {return CDC;}
@@ -23586,7 +23591,7 @@ <h2>G.2 <a name="scanner">Lexical scanner</a></h2>
2358623591
@{I}{M}{P}{O}{R}{T} {return IMPORT_SYM;}
2358723592
@{P}{A}{G}{E} {return PAGE_SYM;}
2358823593
@{M}{E}{D}{I}{A} {return MEDIA_SYM;}
23589-
@{C}{H}{A}{R}{S}{E}{T} {return CHARSET_SYM;}
23594+
"@charset " {return CHARSET_SYM;}
2359023595

2359123596
"!"({w}|{comment})*{I}{M}{P}{O}{R}{T}{A}{N}{T} {return IMPORTANT_SYM;}
2359223597

css2/diffs-rec/about.html

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -28,31 +28,31 @@ <H1><a name="q0">1 About the <del>CSS2</del><ins>CSS&nbsp;2.1</ins> Specificati
2828
<div class="subtoc">
2929
<p><strong>Contents</strong>
3030
<ul class="toc">
31-
<li class="tocline2"><a href="about.html#q1" class="tocxref">1.1 <ins>CSS&nbsp;2.1</ins> <ins>vs</ins> <ins>CSS&nbsp;2</ins></a>
32-
<li class="tocline2"><a href="about.html#q2" class="tocxref"><ins>1.2</ins> Reading the specification</a>
33-
<li class="tocline2"><a href="about.html#q3" class="tocxref"> <del>1.2</del><ins>1.3</ins> How the specification is organized</a>
34-
<li class="tocline2"><a href="about.html#q4" class="tocxref"> <del>1.3</del><ins>1.4</ins> Conventions</a>
31+
<li class="tocline2"><a href="about.html#css2.1-v-css2" class="tocxref">1.1 <ins>CSS&nbsp;2.1</ins> <ins>vs</ins> <ins>CSS&nbsp;2</ins></a>
32+
<li class="tocline2"><a href="about.html#reading" class="tocxref"><ins>1.2</ins> Reading the specification</a>
33+
<li class="tocline2"><a href="about.html#organization" class="tocxref"> <del>1.2</del><ins>1.3</ins> How the specification is organized</a>
34+
<li class="tocline2"><a href="about.html#conventions" class="tocxref"> <del>1.3</del><ins>1.4</ins> Conventions</a>
3535
<ul class="toc">
36-
<li class="tocline3"><a href="about.html#q5" class="tocxref"> <del>1.3.1</del><ins>1.4.1</ins> Document language elements and attributes</a>
36+
<li class="tocline3"><a href="about.html#doc-language" class="tocxref"> <del>1.3.1</del><ins>1.4.1</ins> Document language elements and attributes</a>
3737
<li class="tocline3"><a href="about.html#property-defs" class="tocxref"> <del>1.3.2</del><ins>1.4.2</ins> CSS property definitions</a>
3838
<ul class="toc">
39-
<li class="tocline4"><a href="about.html#q7" class="tocxref"><ins>1.4.2.1</ins> Value</a>
39+
<li class="tocline4"><a href="about.html#value-defs" class="tocxref"><ins>1.4.2.1</ins> Value</a>
4040
<li class="tocline4"><a href="about.html#initial-value" class="tocxref"><ins>1.4.2.2</ins> Initial</a>
4141
<li class="tocline4"><a href="about.html#applies-to" class="tocxref"><ins>1.4.2.3</ins> Applies to</a>
42-
<li class="tocline4"><a href="about.html#q10" class="tocxref"><ins>1.4.2.4</ins> Inherited</a>
43-
<li class="tocline4"><a href="about.html#q11" class="tocxref"><ins>1.4.2.5</ins> Percentage values</a>
44-
<li class="tocline4"><a href="about.html#q12" class="tocxref"><ins>1.4.2.6</ins> Media groups</a>
45-
<li class="tocline4"><a href="about.html#q13" class="tocxref"> <del>1.3.3</del><ins>1.4.2.7</ins> <ins>Computed</ins> <ins>value</ins></a>
42+
<li class="tocline4"><a href="about.html#inherited-prop" class="tocxref"><ins>1.4.2.4</ins> Inherited</a>
43+
<li class="tocline4"><a href="about.html#percentage-wrt" class="tocxref"><ins>1.4.2.5</ins> Percentage values</a>
44+
<li class="tocline4"><a href="about.html#media-applies" class="tocxref"><ins>1.4.2.6</ins> Media groups</a>
45+
<li class="tocline4"><a href="about.html#computed-defs" class="tocxref"> <del>1.3.3</del><ins>1.4.2.7</ins> <ins>Computed</ins> <ins>value</ins></a>
4646
</ul>
4747
<li class="tocline3"><a href="about.html#shorthand" class="tocxref"><ins>1.4.3</ins> Shorthand properties</a>
48-
<li class="tocline3"><a href="about.html#q15" class="tocxref"> <del>1.3.4</del><ins>1.4.4</ins> Notes and examples</a>
49-
<li class="tocline3"><a href="about.html#q16" class="tocxref"> <del>1.3.5</del><ins>1.4.5</ins> Images and long descriptions</a>
48+
<li class="tocline3"><a href="about.html#notes-and-examples" class="tocxref"> <del>1.3.4</del><ins>1.4.4</ins> Notes and examples</a>
49+
<li class="tocline3"><a href="about.html#images-and-longdesc" class="tocxref"> <del>1.3.5</del><ins>1.4.5</ins> Images and long descriptions</a>
5050
</ul>
51-
<li class="tocline2"><a href="about.html#q17" class="tocxref"> <del>1.4</del> <del>Acknowledgments</del>1.5 <del>Copyright</del> <del>Notice</del><ins>Acknowledgments</ins></a>
51+
<li class="tocline2"><a href="about.html#acknowledgements" class="tocxref"> <del>1.4</del> <del>Acknowledgments</del>1.5 <del>Copyright</del> <del>Notice</del><ins>Acknowledgments</ins></a>
5252
</ul>
5353
</div>
5454

55-
<h2><a name="q1">1.1 <ins>CSS&nbsp;2.1</ins> <ins>vs</ins> <ins>CSS&nbsp;2</ins></a></h2>
55+
<h2>1.1 <a name="css2.1-v-css2"><ins>CSS&nbsp;2.1</ins> <ins>vs</ins> <ins>CSS&nbsp;2</ins></a></h2>
5656

5757
<p><ins>The</ins> <ins>CSS</ins> <ins>community</ins> <ins>has</ins> <ins>gained</ins> <ins>significant</ins> <ins>experience</ins> <ins>with</ins> <ins>the</ins> <ins>CSS2</ins>
5858
<ins>specification</ins> <ins>since</ins> <ins>it</ins> <ins>became</ins> <ins>a</ins> <ins>recommendation</ins> <ins>in</ins> <ins>1998.</ins> <ins>Errors</ins> <ins>in</ins> <ins>the</ins>
@@ -107,7 +107,7 @@ <h2><a name="q1">1.1 <ins>CSS&nbsp;2.1</ins> <ins>vs</ins> <ins>CSS&nbsp;2</ins>
107107
<ins>features,</ins> <ins>or</ins> <ins>preferably</ins> <ins>reference</ins> <ins>such</ins> <ins>feature(s)</ins> <ins>in</ins> <ins>the</ins> <ins>respective</ins>
108108
<ins>CSS3</ins> <ins>Module</ins> <ins>that</ins> <ins>includes</ins> <ins>those</ins> <ins>feature(s)).</ins>
109109

110-
<h2><a name="q2"><ins>1.2</ins> Reading the specification</a></h2>
110+
<h2><ins>1.2</ins> <a name="reading">Reading the specification</a></h2>
111111

112112
<p>This <ins>section</ins> <ins>is</ins> <ins>non-normative.</ins>
113113

@@ -134,7 +134,7 @@ <h2><a name="q2"><ins>1.2</ins> Reading the specification</a></h2>
134134
discrepancy, the electronic version is considered the authoritative
135135
version of the document.
136136

137-
<h2><a name="q3"> <del>1.2</del><ins>1.3</ins> How the specification is organized</a></h2>
137+
<h2> <del>1.2</del><ins>1.3</ins> <a name="organization">How the specification is organized</a></h2>
138138

139139
<p><ins>This</ins> <ins>section</ins> <ins>is</ins> <ins>non-normative.</ins>
140140

@@ -168,9 +168,9 @@ <h2><a name="q3"> <del>1.2</del><ins>1.3</ins> How the specification is organize
168168
<a href="indexlist.html">general index</a>.
169169
</dl>
170170

171-
<H2><a name="q4"> <del>1.3</del><ins>1.4</ins> Conventions</a></H2>
171+
<H2> <del>1.3</del><ins>1.4</ins> <a name="conventions">Conventions</a></H2>
172172

173-
<H3><a name="q5"> <del>1.3.1</del><ins>1.4.1</ins> </a><a href="conform.html#doclanguage">Document language</a> elements
173+
<H3> <del>1.3.1</del><ins>1.4.1</ins> <a name="doc-language" href="conform.html#doclanguage">Document language</a> elements
174174
and attributes</H3>
175175

176176
<ul>
@@ -202,7 +202,7 @@ <H3> <del>1.3.2</del><ins>1.4.2</ins> <a name="property-defs">CSS property defin
202202
</div>
203203

204204

205-
<h4><a name="q7"><ins>1.4.2.1</ins> Value</a></h4>
205+
<h4><ins>1.4.2.1</ins> <a name="value-defs">Value</a></h4>
206206

207207
<P>This part specifies the set of valid values for the <del>property.</del><ins>property</ins> <ins>whose</ins>
208208
<ins>name</ins> <ins>is</ins> <a href="about.html#propdef-property-name" class="noxref"><span class="propinst-property-name"><ins>'property-name'</ins></span></a><ins>.</ins> Value
@@ -322,7 +322,7 @@ <h4><ins>1.4.2.3</ins> <a name="applies-to">Applies to</a></h4>
322322
have no rendering effect on some types of elements. For example, <del>'white-space'</del><ins>the</ins> <a href="visuren.html#propdef-clear" class="noxref"><span
323323
class="propinst-clear"><ins>'clear'</ins></span></a> <ins>property</ins> only affects block-level elements.
324324

325-
<h4><a name="q10"><ins>1.4.2.4</ins> Inherited</a></h4>
325+
<h4><ins>1.4.2.4</ins> <a name="inherited-prop">Inherited</a></h4>
326326

327327
<p>This part indicates whether the value of the property is inherited
328328
from an ancestor element. Please consult the section on <a
@@ -331,19 +331,19 @@ <h4><a name="q10"><ins>1.4.2.4</ins> Inherited</a></h4>
331331
values.
332332

333333

334-
<h4><a name="q11"><ins>1.4.2.5</ins> Percentage values</a></h4>
334+
<h4><ins>1.4.2.5</ins> <a name="percentage-wrt">Percentage values</a></h4>
335335

336336
<p>This part indicates how percentages should be interpreted, if they occur in
337337
the value of the property. If "N/A" appears here, it means that the
338338
property does not accept percentages as values.
339339

340-
<h4><a name="q12"><ins>1.4.2.6</ins> Media groups</a></h4>
340+
<h4><ins>1.4.2.6</ins> <a name="media-applies">Media groups</a></h4>
341341

342342
<p>This part indicates the <a href="media.html#media-groups">media
343343
groups</a> to which the property applies. <del>The</del> <del>conformance</del> <del>conditions</del> <del>state</del> <del>that</del> <del>user</del> <del>agents</del> <del>must</del> <del>support</del> <del>this</del> <del>property</del> <del>if</del> <del>they</del> <del>support</del> <del>rendering</del> <del>to</del> <del>the</del> <del>media</del> <del>types</del> <del>included</del> <del>in</del> <del>these</del><ins>Information</ins> <ins>about</ins> media
344344
groups <del>.</del> <del>1.3.3</del><ins>is</ins> <ins>non-normative.</ins>
345345

346-
<h4><a name="q13"><ins>1.4.2.7</ins> <ins>Computed</ins> <ins>value</ins></a></h4>
346+
<h4><ins>1.4.2.7</ins> <a name="computed-defs"><ins>Computed</ins> <ins>value</ins></a></h4>
347347

348348
<p><ins>This</ins> <ins>part</ins> <ins>describes</ins> <ins>the</ins> <ins>computed</ins> <ins>value</ins> <ins>for</ins> <ins>the</ins> <ins>property.</ins> <ins>See</ins> <ins>the</ins>
349349
<ins>section</ins> <ins>on</ins> <a href="cascade.html#computed-value"><ins>computed</ins> <ins>values</ins></a>
@@ -397,7 +397,7 @@ <H3><ins>1.4.3</ins> <a name="shorthand">Shorthand properties</a></H3>
397397
take their initial values.</p>
398398
</div>
399399

400-
<h3 id="notes-and-examples"><a name="q15"> <del>1.3.4</del><ins>1.4.4</ins> Notes and examples</a></h3>
400+
<h3> <del>1.3.4</del><ins>1.4.4</ins> <a name="notes-and-examples">Notes and examples</a></h3>
401401

402402
<P>All examples that illustrate illegal usage are clearly
403403
marked as "ILLEGAL EXAMPLE".
@@ -412,15 +412,15 @@ <h3 id="notes-and-examples"><a name="q15"> <del>1.3.4</del><ins>1.4.4</ins> Note
412412
the source HTML</a> for the specification and <del>CSS1</del><ins>CSS</ins> user agents will
413413
render them specially.
414414

415-
<h3><a name="q16"> <del>1.3.5</del><ins>1.4.5</ins> Images and long descriptions</a></h3>
415+
<h3> <del>1.3.5</del><ins>1.4.5</ins> <a name="images-and-longdesc">Images and long descriptions</a></h3>
416416

417417
<P>Most images in the electronic version of this specification are
418418
accompanied by "long descriptions" of what they represent. A link to
419419
the long description is denoted by a "[D]" <del>to</del> <del>the</del> <del>right</del> <del>of</del><ins>after</ins> the image.
420420

421421
<P>Images and long descriptions are informative only.
422422

423-
<H2><a name="q17"> <del>1.4</del><ins>1.5</ins> Acknowledgments</a></H2>
423+
<H2> <del>1.4</del><ins>1.5</ins> <a name="acknowledgements">Acknowledgments</a></H2>
424424

425425
<p>This <del>specification</del><ins>section</ins> is <del>the</del> <del>product</del> <del>of</del> <del>the</del> <del>W3C</del> <del>Working</del> <del>Group</del><ins>non-normative.</ins>
426426

0 commit comments

Comments
 (0)