csswg/css3-text Overview.html,1.220,1.221 Overview.src.html,1.319,1.320

Update of /sources/public/csswg/css3-text
In directory hutz:/tmp/cvs-serv30576

Modified Files:
	Overview.html Overview.src.html 
Log Message:
Fix other copy-paste error...

Index: Overview.html
===================================================================
RCS file: /sources/public/csswg/css3-text/Overview.html,v
retrieving revision 1.220
retrieving revision 1.221
diff -u -d -r1.220 -r1.221
--- Overview.html	18 Jan 2012 23:26:23 -0000	1.220
+++ Overview.html	18 Jan 2012 23:33:32 -0000	1.221
@@ -2828,33 +2828,6 @@
    href="#hanging-punctuation0"><code
    class=property>hanging-punctuation</code></a>&rsquo;).
 
-  <p>Assuming a UA style sheet of <code>p { margin: 1em 0; }</code>, CSS can
-   achieve the Japanese typesetting styles with the following rules:
-
-  <ul>
-   <li>Brackets flush with indent, flush with other lines (first scheme):
-    <pre>p { /* Flush alignment */
-<!--   -->  margin: 0;
-<!--   -->  text-indent: 1em;
-<!--   -->  text-spacing: trim-start;
-<!--   -->}</pre>
-
-   <li>Brackets preserve fullwidth spacing on all lines (second scheme):
-    <pre>p { /* Fullwidth alignment */
-<!--   -->  margin: 0;
-<!--   -->  text-indent: 1em;
-<!--   -->  text-spacing: normal;
-<!--   -->}</pre>
-
-   <li>Brackets hang in indent, flush with other lines (third scheme):
-    <pre>p { /* Hanging alignment */
-<!--   -->  margin: 0;
-<!--   -->  text-indent: 1em;
-<!--   -->  text-spacing: trim-start;
-<!--   -->  hanging-punctuation: first;
-<!--   -->}</pre>
-  </ul>
-
   <h3 id=text-indent><span class=secno>9.1. </span> First Line Indentation:
    the &lsquo;<a href="#text-indent0"><code
    class=property>text-indent</code></a>&rsquo; property</h3>

Index: Overview.src.html
===================================================================
RCS file: /sources/public/csswg/css3-text/Overview.src.html,v
retrieving revision 1.319
retrieving revision 1.320
diff -u -d -r1.319 -r1.320
--- Overview.src.html	18 Jan 2012 23:26:23 -0000	1.319
+++ Overview.src.html	18 Jan 2012 23:33:32 -0000	1.320
@@ -2093,31 +2093,6 @@
     in the block ('text-indent') and how content is aligned to the start and
     end edges of a line ('hanging-punctuation').
 
-    <p>Assuming a UA style sheet of <code>p { margin: 1em 0; }</code>, CSS can
-      achieve the Japanese typesetting styles with the following rules:
-    <ul>
-      <li>Brackets flush with indent, flush with other lines (first scheme):
-        <pre>p { /* Flush alignment */
-<!--   -->  margin: 0;
-<!--   -->  text-indent: 1em;
-<!--   -->  text-spacing: trim-start;
-<!--   -->}</pre>
-      <li>Brackets preserve fullwidth spacing on all lines (second scheme):
-        <pre>p { /* Fullwidth alignment */
-<!--   -->  margin: 0;
-<!--   -->  text-indent: 1em;
-<!--   -->  text-spacing: normal;
-<!--   -->}</pre>
-      <li>Brackets hang in indent, flush with other lines (third scheme):
-        <pre>p { /* Hanging alignment */
-<!--   -->  margin: 0;
-<!--   -->  text-indent: 1em;
-<!--   -->  text-spacing: trim-start;
-<!--   -->  hanging-punctuation: first;
-<!--   -->}</pre>
-    </ul>
-  </div>
-
   <h3 id="text-indent">
     First Line Indentation: the 'text-indent' property</h3>
 

Received on Wednesday, 18 January 2012 23:33:35 UTC