csswg/css3-multicol Overview.html,1.135,1.136

Update of /sources/public/csswg/css3-multicol
In directory hutz:/tmp/cvs-serv5774

Modified Files:
	Overview.html 
Log Message:
x

Index: Overview.html
===================================================================
RCS file: /sources/public/csswg/css3-multicol/Overview.html,v
retrieving revision 1.135
retrieving revision 1.136
diff -u -d -r1.135 -r1.136
--- Overview.html	6 Apr 2011 23:48:58 -0000	1.135
+++ Overview.html	15 May 2011 19:38:04 -0000	1.136
@@ -2,8 +2,7 @@
 "http://www.w3.org/TR/html4/strict.dtd">
 
 <html lang=en>
- <head><meta content="text/html" http-equiv=Content-Type>
-
+ <head>
   <title>CSS Multi-column Layout Module</title>
   <link href="../default.css" rel=stylesheet type="text/css">
   <link href="http://www.w3.org/StyleSheets/TR/W3C-ED.css" rel=stylesheet
@@ -29,13 +28,13 @@
 
    <h1>CSS Multi-column Layout Module</h1>
 
-   <h2 class="no-num no-toc" id=w3c-working>Editor's Draft 07 April 2011</h2>
+   <h2 class="no-num no-toc" id=w3c-working>Editor's Draft 15 May 2011</h2>
 
    <dl>
     <dt>This version:
 
     <dd>
-     <!--<a href="http://www.w3.org/TR/2011/CR-css3-multicol-20110407">http://www.w3.org/TR/2011/ED-css3-multicol-20110407</a>-->
+     <!--<a href="http://www.w3.org/TR/2011/CR-css3-multicol-20110515">http://www.w3.org/TR/2011/ED-css3-multicol-20110515/</a>-->
      <a
      href="http://dev.w3.org/csswg/css3-multicol/">http://dev.w3.org/csswg/css3-multicol/</a>
      
@@ -48,7 +47,7 @@
     <dt>Previous version:
 
     <dd><a
-     href="http://www.w3.org/TR/2009/WD-css3-multicol-20090630/">http://www.w3.org/TR/2009/WD-css3-multicol-20090630/</a>
+     href="http://www.w3.org/TR/2009/CR-css3-multicol-20091217/">http://www.w3.org/TR/2009/CR-css3-multicol-20091217/</a>
      
 
     <dt>Editors:
@@ -124,11 +123,17 @@
    screen, multi-column layouts have been considered experimental, and
    implementation and use experience was deemed necessary in order to
    proceed. Several implementations have occurred over the past years, and
-   this draft incorporates useful feedback from implementors as well as
-   authors and users.
+   this specification incorporates useful feedback from implementors as well
+   as authors and users.
 
-  <p>This document will remain Candidate Recommendation at least until 17
-   June 2010. See the <a href="#cr-exit-criteria">CR exit criteria.</a>
+  <p>The specification was updated in April 2011 to correct a contradiction
+   between the text and the pseudo-algorithm in section&nbsp;3.4. The
+   pseudo-algorithm was corrected and also made easier to read. The wording
+   of a few other sections was improved in places, without changes to the
+   functionality.
+
+  <p>This document will remain Candidate Recommendation at least until 12 May
+   2011. See the <a href="#cr-exit-criteria">CR exit criteria.</a>
 
   <h2 class="no-num no-toc" id=table-of-contents><a name=contents>Table of
    contents</a></h2>
@@ -1019,8 +1024,9 @@
 
 (19)  if (column-width != auto) and (column-count != auto) then
 (20)    N := min(column-count, floor((available-width + column-gap) / (column-width + column-gap)))
-(21)    W := ((available-width + column-gap) / N) - column-gap;
-(22)  exit
+(21)    N := max(1, N); 
+(22)    W := ((available-width + column-gap) / N) - column-gap;
+(23)  exit
 </pre>
 
   <p>In paged media, user agents may perform this calculation on a per-page
@@ -2230,10 +2236,10 @@
    <dt id=CSS21>[CSS21]
 
    <dd>Bert Bos; et al. <a
-    href="http://www.w3.org/TR/2010/WD-CSS2-20101207"><cite>Cascading Style
-    Sheets Level 2 Revision 1 (CSS 2.1) Specification.</cite></a> 7 December
-    2010. W3C Working Draft. (Work in progress.) URL: <a
-    href="http://www.w3.org/TR/2010/WD-CSS2-20101207">http://www.w3.org/TR/2010/WD-CSS2-20101207</a>
+    href="http://www.w3.org/TR/2009/CR-CSS2-20090423"><cite>Cascading Style
+    Sheets Level 2 Revision 1 (CSS&#160;2.1) Specification.</cite></a> 23
+    April 2009. W3C Candidate Recommendation. (Work in progress.) URL: <a
+    href="http://www.w3.org/TR/2009/CR-CSS2-20090423">http://www.w3.org/TR/2009/CR-CSS2-20090423</a>
     </dd>
    <!---->
 

Received on Sunday, 15 May 2011 19:38:08 UTC