Skip to content

Commit 16d7142

Browse files
committed
[css2] Removed initial date
--HG-- extra : convert_revision : svn%3A73dc7c4b-06e6-40f3-b4f7-9ed1dbc14bfc/trunk%401745
1 parent ad77902 commit 16d7142

File tree

1 file changed

+105
-3
lines changed

1 file changed

+105
-3
lines changed

css2/errata.src

Lines changed: 105 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,13 @@ src="http://www.w3.org/Icons/w3c_home.gif" alt="W3C" align="left" border="0"
1919
hspace="0"></a><br clear="all"></p>
2020

2121
<H1 align="center">Errata in _THE_ID_</H1>
22-
<p align="center">12-May-1998</p>
2322

2423
<dl>
2524
<dt>This document:
2625
<dd><a href="_THE_UPDATE_DIR_/_THE_ID_-errata.html">
2726
_THE_UPDATE_DIR_/_THE_ID_-errata.html</a>
2827
<dt>Last revised:
29-
<dd>$Date: 1998-09-28 23:23:23 $
28+
<dd>$Date: 1999-01-08 16:35:33 $
3029
</dl>
3130

3231
<dl>
@@ -54,6 +53,11 @@ do not enforce this rule: 'border-top', 'border-right',
5453
'border-bottom', 'border-left', 'border', 'background', 'font',
5554
'list-style', 'cue', and 'outline'.
5655

56+
<H3><a href="syndata.html#tokenization">Section 4.1.1</a> (and
57+
<a href="grammar.html#q2">D2</a>)</H3>
58+
59+
<P>The "nmchar" token should also allow the range "A-Z".
60+
5761
<H3><a href="syndata.html#values">Section 4.3 (Double sign problem)</a></H3>
5862

5963
<P>Several values described in subsections of this section
@@ -134,6 +138,26 @@ relatively positioned boxes are considered without their offset). Note
134138
that the child box may be an <a
135139
href="visuren.html#anonymous-block-level">anonymous box.</a>
136140

141+
<h3><a href="visufx.html#overflow">Section 11.1.1</a></h3>
142+
143+
<P>The example of a DIV element containing a BLOCKQUOTE
144+
containing another DIV is not rendered correctly. The first
145+
rule:
146+
147+
<PRE>
148+
DIV { width : 100px; height: 100px;
149+
border: thin solid red;
150+
}
151+
</PRE>
152+
153+
<P>Applies to both the external and internal DIV, so, for
154+
example, the internal DIV box should be rendered
155+
with a red border. The intention of the authors was
156+
that the first style rule only apply to the external DIV.
157+
This could be accomplished by making it more specific by
158+
adding a "class" or "id" value to the markup and changing
159+
the selectors accordingly.
160+
137161
<h3><a href="fonts.html#font-size-props">Section 15.2.4</a></h3>
138162

139163
<P>Under the 'font-size-adjust' property, in the formula given
@@ -171,6 +195,11 @@ tree."
171195
<P>The correct RFC number for the registration of the
172196
"text/css" content type is RFC 2318, not RFC 2138.
173197

198+
<h3><a href="selector.html#lang">Section 5.11.1</a></h3>
199+
200+
<P>In "XML uses an attribute called XML:LANG", the
201+
XML attribute should be in lowercase, i.e., xml:lang.
202+
174203
<h3><a href="selector.html#first-line-pseudo">Section 5.12.1</a></h3>
175204

176205
<P>The rendering of the first example is:</P>
@@ -209,7 +238,12 @@ should end instead with the end tag "&lt;/P&gt;".
209238

210239
<h3><a href="visuren.html#anonymous">Section 9.2.2, Anonymous inline boxes</a></h3>
211240

212-
<P>In the (third paragraph) sentence "In the example, the color of the anonymous initial boxes is inherited from the P, but the background is transparent", substitute the word "inline" for "initial".
241+
<P>In the (third paragraph) sentence "In the example, the color of the
242+
anonymous initial boxes is inherited from the P, but the background is transparent", substitute the word "inline" for "initial".
243+
244+
<h3><a href="visuren.html#relative-positioning">Section 9.4.3</a></h3>
245+
246+
<P>In the second paragraph, "a new a new" should only read "a new".
213247

214248
<h3><a href="generate.html#content">Section 12.2</a></h3>
215249

@@ -245,13 +279,81 @@ element should be "1.12em".
245279

246280
<h2><a name="clarifications">Clarifications</a></h2>
247281

282+
<h3><a href="selector.html#descendant-selectors">Section 5.5</a></h3>
283+
284+
<P>Near the end of the section, the text 'Note the whitespace on
285+
either side of the "*"' may be misleading. The note is not meant to
286+
imply that whitespace is required on both sides of the "*" (since the
287+
grammar does not require it in this case) but that one may use
288+
whitespace in this case.
289+
290+
<h3><a href="cascade.html#value-def-inherit">Section 6.2.1</a></h3>
291+
292+
<P>The 'inherit' value causes the properties value to be
293+
inherited. This applies even to properties for which values
294+
do not otherwise inherit.
295+
248296
<h3><a href="visuren.html#inline-formatting">Section 9.4.2</a></h3>
249297

250298
<P>The statement "When an inline box is split, margins, borders, and
251299
padding have no visual effect where the split occurs." may be
252300
generalized. Margins, borders, and padding have no visual effect
253301
where one or more splits occur.
254302

303+
<h3><a href="visuren.html#relative-positioning">Section 9.4.3</a></h3>
304+
305+
<P>The following attempts to clarify the meaning of the 'left',
306+
'right', 'top' and 'bottom' properties for relative positioning.
307+
308+
<P>For relatively positioned elements, 'left' and 'right' move the
309+
box(es) horizontally, without changing their size. 'Left' moves the
310+
boxes to the right, and 'right' moves them to the left. Since boxes
311+
are not split or stretched as a result of 'left' or 'right', the
312+
computed values are always: left = -right.
313+
314+
<P>If both 'left' and 'right' are 'auto' (their initial values), the
315+
computed values are '0' (i.e., the boxes stay in their original
316+
position).
317+
318+
<P>If 'left' is 'auto', its computed value is minus the value of 'right'
319+
(i.e., the boxes move to the left by the value of 'right').
320+
321+
<P>If 'right' is specified as 'auto', its computed value is minus the
322+
value of 'left'.
323+
324+
<P>If neither 'left' nor 'right' is 'auto', the position is
325+
over-constrained, and one of them has to be ignored. If the
326+
'direction' property is 'ltr', the value of 'left' wins and 'right'
327+
becomes -'left'. If 'direction' is 'rtl', 'right' wins and 'left' is
328+
ignored.
329+
330+
<div class="example">
331+
<P><strong>Example.</strong>
332+
The following two style sheets are equivalent:
333+
334+
<PRE>
335+
DIV.a8 { position: relative; left: -1em; right: auto }
336+
</PRE>
337+
338+
and
339+
340+
<PRE>
341+
DIV.a8 { position: relative; left: auto; right: 1em }
342+
</PRE>
343+
</div>
344+
345+
<P>The 'top' and 'bottom' properties move relatively positioned
346+
elements up or down. They also must be each other's negative. If both
347+
are 'auto', their computed values are both '0'. If one of them is
348+
'auto', it becomes the negative of the other. If neither is 'auto',
349+
'bottom' is ignored (i.e., the computed value of 'bottom' will be
350+
minus the value of 'top').
351+
352+
<h3><a href="aural.html#speaking-props">Section 19.3</a></h3>
353+
354+
<P>The parenthetical phrase "somewhat analogous to the 'display' property"
355+
is misleading. The 'speak' property resembles 'visibility' in
356+
some ways and 'display' in others.
255357

256358
<h2><a name="open-issues">Open Issues</a></h2>
257359

0 commit comments

Comments
 (0)