@@ -110,7 +110,7 @@ body:after {
110110
111111</div>
112112
113-
113+ <del>
114114<P>User agents must ignore the following properties with :before and
115115:after pseudo-elements: <span
116116class="propinst-position">'position'</span>, <span
@@ -140,7 +140,40 @@ has any other value, the pseudo-element will behave as if its value
140140were 'inline'.
141141
142142</ul>
143+ </del>
143144
145+ <ins cite="http://lists.w3.org/Archives/Member/w3c-css-wg/2003JulSep/0038.html">
146+ <p>The :before and :after pseudo-elements elements interact with other
147+ boxes, such as run-in boxes, as if they were real elements inserted just
148+ inside their associated element.</p>
149+
150+ <div class="example">
151+ <p>For example, the following document fragment and stylesheet:</p>
152+ <pre>
153+ <h2> Header </h2> h2 { display: run-in; }
154+ <p> Text </p> p:before { display: block; content: 'Some'; }
155+ </pre>
156+ <p>...would render in exactly the same way as the following document
157+ fragment and stylesheet:</p>
158+ <pre>
159+ <h2> Header </h2> h2 { display: run-in; }
160+ <p><span>Same</span> Text </p> span { display: block; content: 'Some'; }
161+ </pre>
162+ <p>Similarly, the following document fragment and stylesheet:</p>
163+ <pre>
164+ <h2> Header </h2> h2 { display: run-in; }
165+ h2:after { display: block; content: 'Thing'; }
166+ <p> Text </p>
167+ </pre>
168+ <p>...would render in exactly the same way as the following document
169+ fragment and stylesheet:</p>
170+ <pre>
171+ <h2> Header <span>Thing</span></h2> h2 { display: block; }
172+ span { display: block; }
173+ <p> Text </p>
174+ </pre>
175+ </div>
176+ </ins>
144177
145178<h2><a name="content">The</a> <span
146179class="propinst-content">'content'</span> property</h2>
@@ -249,7 +282,7 @@ h1:before {
249282is not fed back to the document language processor (e.g., for
250283reparsing).
251284
252-
285+ <del cite="http://lists.w3.org/Archives/Member/w3c-css-wg/2003JulSep/0038.html">
253286<h2><a name="run-in-gen">Interaction</a> of :before and :after
254287with <span
255288class="index-inst" title="run-in"><span
@@ -316,6 +349,7 @@ Centaurs: ... have hoofs
316349... have a tail
317350</pre>
318351</div>
352+ </del>
319353
320354<h2><a name="quotes">Quotation marks</a></h2>
321355
@@ -711,7 +745,8 @@ they allow style sheets to specify the marker type (image, glyph, or
711745number), and the marker position with respect to the principal box
712746(outside it or within it before content). They do not allow authors to
713747specify distinct style (colors, fonts, alignment, etc.) for the list
714- marker or adjust its position with respect to the principal box.
748+ marker or adjust its position with respect to the principal box, these
749+ may be derived from the principal box.
715750
716751<P>The <a href="colors.html#background-properties">background
717752properties</a> apply to the principal box only; an 'outside' marker
0 commit comments