Skip to content

Commit 6f58575

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

4 files changed

Lines changed: 18 additions & 14 deletions

File tree

css2/css2.html

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1195,7 +1195,7 @@ <h2>1.3 <a name="organization">How the specification is organized</a></h2>
11951195
<dd>The introduction includes a brief tutorial on CSS&nbsp;2.1 and
11961196
a discussion of design principles behind CSS&nbsp;2.1.
11971197

1198-
<dt><strong>Sections 3 - 20: CSS&nbsp;2.1 reference manual.</strong>
1198+
<dt><strong>Sections 3 - 18: CSS&nbsp;2.1 reference manual.</strong>
11991199

12001200
<dd>The bulk of the reference manual consists of the CSS&nbsp;2.1 language
12011201
reference. This reference defines what may go into a CSS&nbsp;2.1 style sheet
@@ -2715,12 +2715,18 @@ <h4>4.1.2.2 <a name="vendor-keyword-history">Informative Historical Notes</a></h
27152715
<table border='1'>
27162716
<thead><tr><th>prefix</th><th>organization</th></tr></thead>
27172717
<tbody>
2718-
<tr><td><code>-ms-</code></td><td>Microsoft</td></tr>
2719-
<tr><td><code>mso-</code></td><td>Microsoft Office</td></tr>
2718+
<tr><td><code>-ms-</code>, <code>mso-</code></td><td>Microsoft</td></tr>
27202719
<tr><td><code>-moz-</code></td><td>Mozilla</td></tr>
2721-
<tr><td><code>-o-</code></td><td>Opera Software</td></tr>
2720+
<tr><td><code>-o-</code>, <code>-xv-</code></td><td>Opera Software</td></tr>
27222721
<tr><td><code>-atsc-</code></td><td>Advanced Television Standards Committee</td></tr>
27232722
<tr><td><code>-wap-</code></td><td>The WAP Forum</td></tr>
2723+
<tr><td><code>-khtml-</code></td><td>KDE</td></tr>
2724+
<tr><td><code>-webkit-</code></td><td>Apple</td></tr>
2725+
<tr><td><code>prince-</code></td><td>YesLogic</td></tr>
2726+
<tr><td><code>-ah-</code></td><td>Antenna House</td></tr>
2727+
<tr><td><code>-hp-</code></td><td>Hewlett Packard</td></tr>
2728+
<tr><td><code>-ro-</code></td><td>Real Objects</td></tr>
2729+
<tr><td><code>-rim-</code></td><td>Research In Motion</td></tr>
27242730
</tbody>
27252731
</table>
27262732

@@ -8339,7 +8345,7 @@ <h2>9.5 <a name="floats">Floats</a></h2>
83398345
<p>Since a float is not in the flow, non-positioned block boxes
83408346
created before and after the float box flow vertically as if the float
83418347
didn't exist. However, line boxes created next to the float are
8342-
shortened to make room for margin box of the float. If a shortened line box
8348+
shortened to make room for the margin box of the float. If a shortened line box
83438349
is too small to contain any further content, then it is shifted downward until
83448350
either it fits or there are no more floats present.
83458351
Any content in the current line before a floated box is reflowed
@@ -23830,14 +23836,13 @@ <h2>G.2 <a name="scanner">Lexical scanner</a></h2>
2383023836
title="tokenizer">tokenizer</span></a>, written in Flex (see <a href="refs.html#ref-FLEX" rel="biblioentry" class="noxref"><span class="normref">[FLEX]</span></a>)
2383123837
notation. The tokenizer is case-insensitive.
2383223838

23833-
<p>The two occurrences of "\377" represent the highest character
23834-
number that current versions of Flex can deal with (decimal 255). They
23839+
<p>The "\377" represents the highest character
23840+
number that current versions of Flex can deal with (decimal 255). It
2383523841
should be read as "\4177777" (decimal 1114111), which is the highest
2383623842
possible code point in <a name="x4"><span class="index-inst"
2383723843
title="unicode">Unicode</span></a>/<a name="x5"><span class="index-inst"
2383823844
title="iso-10646">ISO-10646</span></a>.
2383923845

23840-
2384123846
<pre>
2384223847
%option case-insensitive
2384323848

css2/grammar.html

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -159,14 +159,13 @@ <h2>G.2 <a name="scanner">Lexical scanner</a></h2>
159159
title="tokenizer">tokenizer</span></a>, written in Flex (see <a href="refs.html#ref-FLEX" rel="biblioentry" class="noxref"><span class="normref">[FLEX]</span></a>)
160160
notation. The tokenizer is case-insensitive.
161161

162-
<p>The two occurrences of "\377" represent the highest character
163-
number that current versions of Flex can deal with (decimal 255). They
162+
<p>The "\377" represents the highest character
163+
number that current versions of Flex can deal with (decimal 255). It
164164
should be read as "\4177777" (decimal 1114111), which is the highest
165165
possible code point in <a name="x4"><span class="index-inst"
166166
title="unicode">Unicode</span></a>/<a name="x5"><span class="index-inst"
167167
title="iso-10646">ISO-10646</span></a>.
168168

169-
170169
<pre>
171170
%option case-insensitive
172171

css2/visuren.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1140,7 +1140,7 @@ <h2>9.5 <a name="floats">Floats</a></h2>
11401140
<p>Since a float is not in the flow, non-positioned block boxes
11411141
created before and after the float box flow vertically as if the float
11421142
didn't exist. However, line boxes created next to the float are
1143-
shortened to make room for margin box of the float. If a shortened line box
1143+
shortened to make room for the margin box of the float. If a shortened line box
11441144
is too small to contain any further content, then it is shifted downward until
11451145
either it fits or there are no more floats present.
11461146
Any content in the current line before a floated box is reflowed

css2/visuren.src

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
22
<html lang="en">
3-
<!-- $Id: visuren.src,v 2.149 2008-12-03 13:45:11 bbos Exp $ -->
3+
<!-- $Id: visuren.src,v 2.150 2009-01-21 15:34:56 bbos Exp $ -->
44
<head>
55
<title>Visual formatting model</title>
66
<meta name="editor" lang="tr" content="Tantek &Ccedil;elik">
@@ -960,7 +960,7 @@ more floats present.
960960
<p>Since a float is not in the flow, non-positioned block boxes
961961
created before and after the float box flow vertically as if the float
962962
didn't exist. However, line boxes created next to the float are
963-
shortened to make room for margin box of the float. If a shortened line box
963+
shortened to make room for the margin box of the float. If a shortened line box
964964
is too small to contain any further content, then it is shifted downward until
965965
either it fits or there are no more floats present.
966966
Any content in the current line before a floated box is reflowed

0 commit comments

Comments
 (0)