Skip to content

Commit 7c87a14

Browse files
committed
[css2] Issues up to 15
--HG-- extra : convert_revision : svn%3A73dc7c4b-06e6-40f3-b4f7-9ed1dbc14bfc/trunk%402191
1 parent bf06af7 commit 7c87a14

3 files changed

Lines changed: 11 additions & 69 deletions

File tree

css2/box.src

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
'http://www.w3.org/TR/html4/strict.dtd'>
33

44
<html lang="en">
5-
<!-- $Id: box.src,v 1.47 2003-11-05 19:03:24 bbos Exp $ -->
5+
<!-- $Id: box.src,v 1.48 2003-11-05 20:03:41 bbos Exp $ -->
66
<HEAD>
77
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
88
<TITLE>Box model</TITLE>
@@ -318,12 +318,11 @@ the parent's.</li>
318318
margin collapsing, or only the parent's bottom margin is involved. The
319319
position of the element's top border edge is the same as it would have
320320
been if the element had a non-zero top border.</li></ul>
321-
<ins cite="http://www.damowmow.com/temp/csswg/css21/issues"
322-
title="issue 7">
321+
323322
<p>An element that has had <a
324323
href="visuren.html#clearance">clearance</a> applied to it never
325324
collapses its top margin with its parent block's bottom margin.</p>
326-
</ins>
325+
327326
<p>Note that the positions of elements that have been collapsed
328327
through have no effect on the positions of the other elements with
329328
whose margins they are being collapsed; the top border edge position
@@ -359,6 +358,11 @@ it has neither vertical borders nor vertical padding, and it has a
359358
and it does not contain a line box, and all of its in-flow children's
360359
margins (if any) are adjoining.</p>
361360

361+
<p>When an element's own margins collapse, and that element has had
362+
clearance applied to it, its top margin collapses with the adjoining
363+
margins of subsequent siblings but that resulting margin does not
364+
collapse with the bottom margin of the parent block.</p>
365+
362366
<p>Collapsing is based on the <em>computed value</em> of <span
363367
class="propinst-padding">'padding'</span>, <span
364368
class="propinst-margin">'margin'</span>, and <span

css2/cover.src

Lines changed: 2 additions & 62 deletions
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,6 @@ Group's public <a
140140
href="http://www.w3.org/Style/CSS/Disclosures">patent disclosure
141141
page.</a></p>
142142

143-
<ins cite="http://www.damowmow.com/temp/csswg/css21/issues"
144-
title="issue 15">
145143
<h3 class="no-num" id="crec">Candidate Recommendation Exit Criteria</h3>
146144

147145
<p>For this specification to exit the CR stage, the following
@@ -191,73 +189,15 @@ conditions must be met:</p>
191189
errors to be caught.</p></li>
192190
<li><p>The CR period will be extended if implementations are slow to
193191
appear.</p></li>
194-
<li><p>Features will be dropped (thus reducing the list of "all"
192+
<li><p>Features that were not in CSS1 will be dropped (thus reducing
193+
the list of "all"
195194
features mentioned above) if two or more interoperable
196195
implementations of those features are not found by the end of the CR
197196
period.</p></li>
198197
<li><p>Features will also be dropped if sufficient and adequate
199198
tests (by judgment of the working group) have not been produced for
200199
those features by the end of the CR period.</p></li>
201200
</ol>
202-
</ins>
203-
204-
<del cite="http://www.damowmow.com/temp/csswg/css21/issues"
205-
title="issue 15">
206-
<p>For this specification to exit the CR stage, the following
207-
conditions shall be met:
208-
<ol>
209-
<li><p>There must be at least two interoperable implementations
210-
implementing 'all' the features. An implementation can implement a
211-
superset of the features and claim conformance to the profile. For
212-
the purposes of this criterion, we define the following terms:
213-
214-
<dl>
215-
<dt>feature
216-
<dd>
217-
<p>An individual test case in the test suite.
218-
219-
<dt>interoperable
220-
<dd>
221-
<p>passing the respective test case(s) in the CSS test suite, or,
222-
if the implementation is not a web browser, an equivalent test.
223-
Every relevant test in the test suite should have an equivalent
224-
test created if such a UA is to be used to claim interoperability.
225-
In addition if such a UA is to be used to claim interoperability,
226-
then there must one or more additional UAs which can also pass
227-
those equivalent tests in the same way for the purpose of
228-
interoperability. The equivalent tests must be made publicly
229-
available for the purposes of peer review.
230-
231-
<dt>implementation
232-
<dd>
233-
<p>a user agent which:
234-
<ol>
235-
<li>implements the feature.
236-
237-
<li>is available (i.e. publicly downloadable or available
238-
through some other public point of sale mechanism). This is the
239-
"show me" requirement.
240-
241-
<li>is shipping (i.e. development, private or unofficial
242-
versions are insufficient).
243-
244-
<li>is not experimental (i.e. is intended for a wide audience
245-
and could be used on a daily basis.)
246-
</ol>
247-
</dl>
248-
249-
<li><p>A minimum of sixth months of the CR period must have elapsed.
250-
This is to ensure that enough time is given for any remaining major
251-
errors to be caught.
252-
253-
<li><p>Features may/will be dropped if two or more interoperable
254-
implementations are not found by the end of the CR period.
255-
256-
<li><p>Features may/will also be dropped if adequate/sufficient (by
257-
judgment of CSS WG) tests have not been produced for those
258-
feature(s) by the end of the CR period.
259-
</ol>
260-
</del>
261201

262202
<!--NewPage--><!-- this is for html2ps -->
263203
<div class="toc">

css2/selector.src

Lines changed: 1 addition & 3 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.78 2003-10-31 16:41:34 bbos Exp $ -->
3+
<!-- $Id: selector.src,v 2.79 2003-11-05 20:03:41 bbos Exp $ -->
44
<head>
55
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
66
<title>Selectors</title>
@@ -1129,8 +1129,6 @@ is similar to a floated element.</p>
11291129
<span class="propinst-word-spacing">'word-spacing'</span> (when appropriate),
11301130
<span class="propinst-line-height">'line-height',</span>
11311131
<span class="propinst-float">'float',</span>
1132-
<span class="propinst-height">'height'</span> (only if 'float' is 'none'),
1133-
<span class="propinst-width">'width'</span> (only if 'float' is 'none'),
11341132
<span class="propinst-vertical-align">'vertical-align'</span> (only if 'float' is 'none'),
11351133
<a href="box.html#margin-properties">margin properties,</a>
11361134
<a href="box.html#padding-properties">padding properties,</a>

0 commit comments

Comments
 (0)