Skip to content

Commit 0f274f4

Browse files
committed
[css2] Restructured visual rendering model chapters into box/flow-model/detailed-calculations/visualfx
--HG-- extra : convert_revision : svn%3A73dc7c4b-06e6-40f3-b4f7-9ed1dbc14bfc/trunk%401250
1 parent eb825f6 commit 0f274f4

15 files changed

Lines changed: 1230 additions & 1964 deletions

css2/Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Makefile to generate the CSS2 document based on its "source files"
22
# Arnaud Le Hors - lehors@w3.org
3-
# $Id: Makefile,v 2.18 1998-03-16 14:19:35 ijacobs Exp $
3+
# $Id: Makefile,v 2.19 1998-03-17 08:03:53 ijacobs Exp $
44

55
# what needs to be set for every new release:
66
# Note use of full year (1998) in identifier.
@@ -28,6 +28,7 @@ syndata.src\
2828
selector.src\
2929
cascade.src\
3030
media.src\
31+
box.src\
3132
visuren.src\
3233
visudet.src\
3334
visufx.src\
@@ -67,6 +68,7 @@ syndata.html\
6768
selector.html\
6869
cascade.html\
6970
media.html\
71+
box.html\
7072
visuren.html\
7173
visudet.html\
7274
visufx.html\

css2/Project.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# value contains spaces.
1111
#
1212
# Bert Bos <bert@w3.org>
13-
# $Id: Project.cfg,v 2.2 1998-02-18 14:32:44 bbos Exp $
13+
# $Id: Project.cfg,v 2.3 1998-03-17 08:03:57 ijacobs Exp $
1414

1515
@source-extension .src
1616

@@ -38,6 +38,7 @@
3838
@chapter selector.html
3939
@chapter cascade.html
4040
@chapter media.html
41+
@chapter box.html
4142
@chapter visuren.html
4243
@chapter visudet.html
4344
@chapter visufx.html

css2/about.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.0 Transitional//EN">
22
<html lang="en">
3-
<!-- $Id: about.src,v 2.18 1998-03-16 14:53:13 ijacobs Exp $ -->
3+
<!-- $Id: about.src,v 2.19 1998-03-17 08:03:59 ijacobs Exp $ -->
44
<HEAD>
55
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
66
<TITLE>About the CSS2 Specification</TITLE>
@@ -44,7 +44,7 @@ version of the document.
4444
<dd>The introduction includes a brief tutorial on CSS2 and
4545
a discussion of design principles behind CSS2.
4646

47-
<dt><strong>Sections 3 - 19: CSS2 reference manual.</strong>
47+
<dt><strong>Sections 3 - 20: CSS2 reference manual.</strong>
4848

4949
<dd>The bulk of the reference manual consists of the CSS2 language
5050
reference. This reference defines what may go into a CSS2 style sheet

css2/cascade.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.0 Transitional//EN">
22
<html lang="en">
3-
<!-- $Id: cascade.src,v 2.17 1998-03-17 01:30:17 ijacobs Exp $ -->
3+
<!-- $Id: cascade.src,v 2.18 1998-03-17 08:04:04 ijacobs Exp $ -->
44
<HEAD>
55
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
66
<TITLE>Assigning property values, Cascading, and Inheritance</TITLE>
@@ -428,7 +428,7 @@ equivalent to declaring all of its sub-properties to be "!important".
428428

429429
<P> The first rule in the user's style sheet in the following example
430430
contains an "!important" declaration, which override the corresponding
431-
declaration in the authors's styles sheet. The second declaration
431+
declaration in the author's styles sheet. The second declaration
432432
will also win due to being marked "!important". However, the third
433433
rule in the user's style sheet is not "!important" and will therefore
434434
lose to the second rule in the author's style sheet (which happens to

css2/colors.src

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
22
<html lang="en">
3-
<!-- $Id: colors.src,v 2.8 1998-03-14 23:31:06 ijacobs Exp $ -->
3+
<!-- $Id: colors.src,v 2.9 1998-03-17 08:04:08 ijacobs Exp $ -->
44
<HEAD>
55
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
66
<TITLE>Colors and backgrounds</TITLE>
@@ -37,12 +37,12 @@ EM { color: rgb(255,0,0) } /* RGB range 0-255 */
3737

3838
<P>Authors may specify the background of an element (i.e., its
3939
rendering surface) as either a color or an image. In terms of the <a
40-
href="visuren.html#box-model">box model</a>, "background" refers to
40+
href="box.html#box-model">box model</a>, "background" refers to
4141
the background of the <a
42-
href="visuren.html#box-content-area">content</a> and the <a
43-
href="visuren.html#box-padding-area">padding</a> area. Border colors
42+
href="box.html#box-content-area">content</a> and the <a
43+
href="box.html#box-padding-area">padding</a> area. Border colors
4444
and styles are set with the <a
45-
href="visudet.html#border-properties">border properties</a>. Margins
45+
href="box.html#border-properties">border properties</a>. Margins
4646
are always transparent so the background of the parent box always
4747
shines through.
4848

@@ -164,8 +164,8 @@ P { background-image: none }
164164

165165
<P>If a background image is specified, this property specifies whether
166166
the image is repeated (tiled), and how. All tiling covers the <a
167-
href="visuren.html#box-content-area">content</a> and <a
168-
href="visuren.html#box-padding-area">padding</a> areas of a box.
167+
href="box.html#box-content-area">content</a> and <a
168+
href="box.html#box-padding-area">padding</a> areas of a box.
169169
Values have the following meanings:</p>
170170

171171
<dl>
@@ -246,7 +246,7 @@ class="value-inst-percentage"><strong>&lt;percentage&gt;</strong></span></span>
246246
class="value-inst-percentage"><strong>&lt;percentage&gt;</strong></span></span>
247247
<dd> With a value pair of '0% 0%', the upper left corner of the image
248248
is aligned with the upper left corner of the box's <a
249-
href="visuren.html#padding-edge">padding edge</a>. A value pair of
249+
href="box.html#padding-edge">padding edge</a>. A value pair of
250250
'100% 100%' places the lower right corner of the image in the lower
251251
right corner of the box. With a value pair of '14% 84%', the point
252252
14% across and 84% down the image is to be placed at the point 14%

css2/fonts.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.0 Transitional//EN">
22
<html lang="en">
3-
<!-- $Id: fonts.src,v 2.24 1998-03-16 21:41:06 ijacobs Exp $ -->
3+
<!-- $Id: fonts.src,v 2.25 1998-03-17 08:04:16 ijacobs Exp $ -->
44
<HEAD>
55
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
66
<TITLE>Fonts</TITLE>
@@ -56,7 +56,7 @@ than generic default fonts.
5656
<P>CSS2 changes all that, and allows much greater liberty for:</p>
5757

5858
<ul><li>stylesheet authors, to describe the fonts they want to be used
59-
<li>use ragents, in selecting a font when an author's requested font is not immediately
59+
<li>user agents, in selecting a font when an author's requested font is not immediately
6060
available.
6161
</ul>
6262

css2/generate.src

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -714,7 +714,7 @@ the alignment of the text in the marker box.
714714
<P>The <span class="propinst-marker-offset">'marker-offset'</span>
715715
property specifies the horizontal offset between a marker box and the
716716
associated principal box. The distance is measured between their <a
717-
href="visuren.html#border-edge">border edges</a>.
717+
href="box.html#border-edge">border edges</a>.
718718

719719
<p class="note">[Is this offset kept constant, even if
720720
'overflow:visible'? I would say it gets smaller. BB]

css2/page.src

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
22
<html lang="en">
3-
<!-- $Id: page.src,v 2.14 1998-03-17 05:19:01 ijacobs Exp $ -->
3+
<!-- $Id: page.src,v 2.15 1998-03-17 08:04:30 ijacobs Exp $ -->
44
<HEAD>
55
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
66
<TITLE>Paged media</TITLE>
@@ -20,7 +20,7 @@ as follows:</p>
2020

2121
<ol>
2222
<li>The <a href="#page-box">page
23-
box</a> extends the <a href="visuren.html#box-model">box
23+
box</a> extends the <a href="box.html#box-model">box
2424
model</a> to allow authors to specify the size of a page, its margins,
2525
etc.
2626

@@ -68,18 +68,18 @@ embedded areas:</p>
6868
name="page-area"><dfn>page area</dfn></a></span>. The page
6969
area includes the boxes laid out on that page.
7070
The edges of the page area act as a <a
71-
href="visudet.html#containing-block">containing block</a> for layout
71+
href="visuren.html#containing-block">containing block</a> for layout
7272
that occurs between page breaks. It also acts as the <a
73-
href="visudet.html#initial-containing-block">initial containing
73+
href="visuren.html#initial-containing-block">initial containing
7474
block</a>.
75-
<li>The margin area (see the <a href="visuren.html#box-margin-area">
75+
<li>The margin area (see the <a href="box.html#box-margin-area">
7676
margin area</a> of the box model).
7777
</ul>
7878

7979
<div class="note"><P>
8080
<em><strong>Note.</strong> In CSS2, the <a
81-
href="./visudet.html#border-properties">border properties</a> and <a
82-
href="./visudet.html#padding-properties">padding properties</a>
81+
href="./box.html#border-properties">border properties</a> and <a
82+
href="./box.html#padding-properties">padding properties</a>
8383
do not apply to pages; they may in the future.
8484
</em>
8585
</div>
@@ -112,7 +112,7 @@ For example, the following @page rule sets the margins of the page to 2cm.
112112

113113
<h3><a name="page-margins">Page margins</a></h3>
114114

115-
<P>The <a href="visudet.html#margin-properties">margin properties</a>
115+
<P>The <a href="box.html#margin-properties">margin properties</a>
116116
(<span class="propinst-margin-top">'margin-top'</span>, <span
117117
class="propinst-margin-right">'margin-right'</span>, <span
118118
class="propinst-margin-bottom">'margin-bottom'</span>, <span
@@ -191,7 +191,7 @@ target size so if the target sheet dimensions are
191191
property create an absolute page box. If only one length value is
192192
specified, it sets both the width and height of the page box (i.e.,
193193
the box is a square). Since the page box is the <a
194-
href="visudet.html#initial-containing-block">initial containing
194+
href="visuren.html#initial-containing-block">initial containing
195195
block</a>, percentage values are not allowed for the <span
196196
class="propinst-size">'size'</span> property.
197197

css2/selector.src

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.0 Transitional//EN'>
22
<html lang="en">
3-
<!-- $Id: selector.src,v 2.30 1998-03-17 01:30:23 ijacobs Exp $ -->
3+
<!-- $Id: selector.src,v 2.31 1998-03-17 08:04:36 ijacobs Exp $ -->
44
<head>
55
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
66
<title>Selectors</title>
@@ -1111,9 +1111,9 @@ class="propinst-vertical-align">'vertical-align'</span> (only if
11111111
'float' is 'none'), <span
11121112
class="propinst-text-transform">'text-transform',</span> <span
11131113
class="propinst-line-height">'line-height',</span> <a
1114-
href="visudet.html#margin-properties">margin properties,</a> <a
1115-
href="visudet.html#padding-properties">padding properties,</a> <a
1116-
href="visudet.html#border-properties">border properties,</a> <span
1114+
href="box.html#margin-properties">margin properties,</a> <a
1115+
href="box.html#padding-properties">padding properties,</a> <a
1116+
href="box.html#border-properties">border properties,</a> <span
11171117
class="propinst-float">'float',</span> and <span
11181118
class="propinst-clear">'clear'.</span></p>
11191119

css2/syndata.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.0 Transitional//EN">
22
<html lang="en">
3-
<!-- $Id: syndata.src,v 2.39 1998-03-17 05:19:08 ijacobs Exp $ -->
3+
<!-- $Id: syndata.src,v 2.40 1998-03-17 08:04:41 ijacobs Exp $ -->
44
<HEAD>
55
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
66
<TITLE>CSS2 syntax and basic data types</TITLE>
@@ -755,7 +755,7 @@ example a length. Each property that allows percentages also defines
755755
the value to which the percentage refers. The value may be that of
756756
another property for the same element, a property for an ancestor
757757
element, or a value of the rendering context (e.g., the width of a <a
758-
href="visudet.html#containing-block">containing block</a>). When a
758+
href="visuren.html#containing-block">containing block</a>). When a
759759
percentage value is set for a property of the <a
760760
href="conform.html#root">root</a> element and the percentage is
761761
defined as referring to the inherited value of some property, the

0 commit comments

Comments
 (0)