csswg/css3-gcpm Overview.src.html,1.195,1.196

Update of /sources/public/csswg/css3-gcpm
In directory hutz:/tmp/cvs-serv31342

Modified Files:
	Overview.src.html 
Log Message:
updating examples, reoganized text

Index: Overview.src.html
===================================================================
RCS file: /sources/public/csswg/css3-gcpm/Overview.src.html,v
retrieving revision 1.195
retrieving revision 1.196
diff -u -d -r1.195 -r1.196
--- Overview.src.html	27 Dec 2011 13:39:03 -0000	1.195
+++ Overview.src.html	27 Dec 2011 13:45:45 -0000	1.196
@@ -3041,7 +3041,7 @@
 
 <h3>Exclusions based on images</h3>
 
-<p>Exclusions are often based on shapes found in images. In this specification, the background image carries the shape, around which text is wrapped. The new property 'background-exclude-level' indicates a level in the alpha channel of the background image(s) that defines the shape.
+<p>Exclusions are often based on shapes found in images. In this specification, background image can carry the shape, around which text is wrapped. The new property 'background-exclude-level' indicates a level in the alpha channel of the background image(s) that defines the shape.
 
 
 <div class=example>
@@ -3092,6 +3092,24 @@
 </div>
 
 
+<h3>Exclusions based on rendered content</h3>
+
+
+<div class=example>
+<img src=exclusions-dropcap.png>
+<pre>
+#dropcaps {
+  font-size: 3em;
+  float: left;
+  exclude-level: 0.5;
+}
+
+&lt;p>&lt;span id="dropcaps">Many&lt;/span> instances ...&lt;/p>
+    &lt;p>The text ....&lt;/p>
+</pre>
+</div>
+
+
 
 <h3>Exclusions based on shapes</h3>
 
@@ -3166,7 +3184,6 @@
 selectors for columns, columns can be styled and positioned and
 thereby escape the rigid patterns that columns naturally live in.
 
-<h3>Selecting columns</h3>
 
 <div class=example>
 <pre>
@@ -3186,7 +3203,7 @@
 <p>A column that is moved from its natural position is called a region in this specification. Columns can be moved using floating or absolute positioning.
 -->
 
-<p>To underline the fact that columns are regions, the "region" keyword can also be used to select columns.
+<p>To underline the fact that columns are regions, the "region" keyword can be used as a substitute for "column".
 
 
 <div class=example>
@@ -3298,7 +3315,7 @@
 article {
   columns: 15em;
 }
-acticle::region(1-3) {
+article::region(1-3) {
   height: 15em;
 }
 acticle::region(2-3) {
@@ -3326,21 +3343,6 @@
 </div>
 
 
-<div class=example>
-<img src=exclusions-dropcap.png>
-<pre>
-#dropcaps {
-  font-size: 3em;
-  float: left;
-  exclude-level: 0.5;
-}
-
-&lt;p>&lt;span id="dropcaps">Many&lt;/span> instances ...&lt;/p>
-    &lt;p>The text ....&lt;/p>
-</pre>
-</div>
-
-
 
 <h2>Selecting pages</h2>
 

Received on Tuesday, 27 December 2011 13:45:56 UTC