Skip to content

Commit 1a97030

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

5 files changed

Lines changed: 31 additions & 24 deletions

File tree

css2/cascade.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -221,9 +221,10 @@ <H2>6.3 <a name="at-import">The @import rule</a></h2>
221221
<P>The <a name="x6"><span class="index-def"
222222
title="@import"><dfn>'@import'</dfn></span></a> rule allows users to
223223
import style rules from other style sheets. Any @import rules must
224-
precede all rule sets in a style sheet. The '@import' keyword must be
225-
followed by the URI of the style sheet to include. A string is also
226-
allowed; it will be interpreted as if it had url(...) around it.
224+
precede all other rules (except the @charset rule, if present). The
225+
'@import' keyword must be followed by the URI of the style sheet to
226+
include. A string is also allowed; it will be interpreted as if it had
227+
url(...) around it.
227228

228229
<div class="example"><P style="display:none">Example(s):</P><P>
229230
The following lines are equivalent in meaning and illustrate both

css2/conform.html

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -424,19 +424,12 @@ <h2>3.2 <a name="conformance">Conformance</a></h2>
424424

425425
<h2><a name="q3">3.3 Error conditions</a></h2>
426426

427-
<P>In general, this document does not specify error handling behavior
428-
for user agents (e.g., how they behave when they cannot find
429-
a resource designated by a URI).
427+
<p>In general, this document specifies error handling behavior
428+
throughout the specification. For example, see the <a
429+
href="syndata.html#parsing-errors">rules for handling parsing errors</a>.
430430

431-
<P>However, user agents must observe the <a
432-
href="syndata.html#parsing-errors">rules for handling parsing errors</a>.
433-
434-
<P>Since user agents may vary in how they handle error conditions,
435-
authors and users must not rely on specific error recovery behavior.
436-
437-
438-
<H2>3.4 <span class="index-def" title="text/css"><a
439-
name="text-css">The text/css content type</a></span></H2>
431+
<h2>3.4 <span class="index-def" title="text/css"><a
432+
name="text-css">The text/css content type</a></span></h2>
440433

441434
<p>CSS style sheets that exist in separate files are sent over the
442435
Internet as a sequence of bytes accompanied by encoding

css2/generate.html

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,12 @@ <h2>12.1 <a name="before-after-content">The</a> <a name="x2"><span class="index-
180180
</pre>
181181
</div>
182182

183+
<div class="note">
184+
<p><strong>Note.</strong> This specification does not fully define the interaction of :before
185+
and :after with replaced elements (such as IMG in HTML). This will
186+
be defined in more detail in a future specification.</p>
187+
</div>
188+
183189
<h2>12.2 <a name="content">The</a> <a href="generate.html#propdef-content" class="noxref"><span
184190
class="propinst-content">'content'</span></a> property</h2>
185191

@@ -265,9 +271,13 @@ <h2>12.2 <a name="content">The</a> <a href="generate.html#propdef-content" class
265271
string is not parsed by the CSS processor. If the subject of the selector
266272
doesn't have an attribute X, an empty string is returned. The
267273
case-sensitivity of attribute names depends on the document language.
274+
</dl>
275+
276+
<div class="note">
268277
<strong>Note.</strong> In CSS 2.1, it is not possible to refer to
269278
attribute values for other elements than the subject of the selector.
270-
</dl>
279+
</div>
280+
271281

272282
<P>The <a href="visuren.html#propdef-display" class="noxref"><span class="propinst-display">'display'</span></a> property
273283
controls whether the content is placed in a block or inline box.
@@ -653,7 +663,7 @@ <h3>12.4.1 <a name="scope">Nested counters and scope</a></h3>
653663
<a href="generate.html#propdef-counter-reset" class="noxref"><span class="propinst-counter-reset">'counter-reset'</span></a> for that
654664
counter and includes the element's descendants and its following
655665
siblings with their descendants. However, it does not include any
656-
elements in the scope of a counter created by a 'counter-reset' on a
666+
elements in the scope of a counter with the same name created by a 'counter-reset' on a
657667
later sibling of the element or by a later 'counter-reset' on the same
658668
element.
659669

css2/page.html

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -90,15 +90,18 @@ <h2>13.2 <a name="page-box">Page boxes</a>: the @page rule</h2>
9090
<ul>
9191

9292
<li>The <span class="index-def" title="page area"><a
93-
name="page-area"><dfn>page area</dfn></a></span>. The page
94-
area includes the boxes laid out on that page.
95-
The edges of the first page area act as the initial <a
96-
href="visudet.html#containing-block-details">containing block</a>
97-
for layout that occurs between page breaks.
93+
name="page-area"><dfn>page area</dfn></a></span>. The page area
94+
includes the boxes laid out on that page. The edges of the first page
95+
area establish the rectangle that is the initial <a
96+
href="visudet.html#containing-block-details">containing block</a> of
97+
the document.
98+
9899

99100
<li>The margin area, which surrounds the page area.
100101
</ul>
101102

103+
<p>The size of a page box cannot be specified in CSS 2.1.
104+
102105
<P>Authors can specify the margins of a page box inside an <a name="x3"><span
103106
class="index-def" title="@page">@page</span></a> rule. An @page rule
104107
consists of the keyword "@page", followed by an optional page

css2/syndata.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -254,9 +254,9 @@ <h4 id="vendor-keyword-history"><a name="q5">4.1.2.2 Informative Historical Note
254254
<p>At the time of writing, the following prefixes are known to exist:</p>
255255

256256
<table border='1'>
257-
<thead><tr><th>prefix</th><th>organization</th><th>notes</th></tr></thead>
257+
<thead><tr><th>prefix</th><th>organization</th></tr></thead>
258258
<tbody>
259-
<tr><td><code>mso-</code></td><td>Microsoft Corporation</td><td>Created before the working group established a naming convention for extensions.</td></tr>
259+
<tr><td><code>-ms-</code></td><td>Microsoft Corporation</td></tr>
260260
<tr><td><code>-moz-</code></td><td>The Mozilla Organization</td></tr>
261261
<tr><td><code>-o-</code></td><td>Opera Software</td></tr>
262262
<tr><td><code>-atsc-</code></td><td>Advanced Television Standards Committee</td></tr>

0 commit comments

Comments
 (0)