csswg/css3-layout Overview.src.html,1.14,1.15

Update of /sources/public/csswg/css3-layout
In directory hutz:/tmp/cvs-serv30081

Modified Files:
	Overview.src.html 
Log Message:
Fixed error in example 6: s/@/1/


Index: Overview.src.html
===================================================================
RCS file: /sources/public/csswg/css3-layout/Overview.src.html,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- Overview.src.html	7 Dec 2011 20:59:37 -0000	1.14
+++ Overview.src.html	16 Jan 2012 18:55:18 -0000	1.15
@@ -505,11 +505,11 @@
 rendered differently from other H1s:
 
 <pre>
-::slot(@) {
+::slot(1) {
   font-weight: bold;
   color: #0C3D5F;
   font-size: larger }
-h1::slot(@) {
+h1::slot(1) {
   color: crimson;
   display: run-in }
 </pre>
@@ -816,6 +816,8 @@
 <p>(or even just '1 39') is safer. On the other hand, those 39
 identical letters make it immediately clear what the intention
 is&hellip;
+<p>Percentages that do no sum to 100% need not be rejected, however:
+they could be used to force overflow.
 </div>
 
 <p>The orientation of the template is independent of the writing mode
@@ -2036,7 +2038,7 @@
 
 <p class=note>Note that a slot can have overflowing content even if it
 is part of a <span>chain</span>: it can have content that is too wide
-and content that is too tall but cannot be broken.
+but cannot be broken.
 
 <h2>Breaking content between slots in a chain</h2>
 

Received on Monday, 16 January 2012 18:55:22 UTC