csswg/css3-writing-modes Overview.html,1.214,1.215 Overview.src.html,1.224,1.225

Update of /sources/public/csswg/css3-writing-modes
In directory hutz:/tmp/cvs-serv19784

Modified Files:
	Overview.html Overview.src.html 
Log Message:
Compromise between last two orthogonal flows auto-sizing computations: use the minimum of the fill-available and fallback measures. This respects the containing block's size (fill-available) when practical, but also allows the content to paginate correctly (by using the ICB).

Index: Overview.html
===================================================================
RCS file: /sources/public/csswg/css3-writing-modes/Overview.html,v
retrieving revision 1.214
retrieving revision 1.215
diff -u -d -r1.214 -r1.215
--- Overview.html	15 Oct 2011 01:26:08 -0000	1.214
+++ Overview.html	15 Oct 2011 01:59:04 -0000	1.215
@@ -2445,7 +2445,12 @@
   <p>If the computed measure of an element establishing an orthogonal flow is
    &lsquo;<code class=css>auto</code>&rsquo;, then the used measure is
    calculated as the <a href="#fit-content"><i>fit-content</i></a>
-   (shrink-to-fit) size.
+   (shrink-to-fit) size using the minimum of the <a
+   href="#fill-available-measure"><i>fill-available measure</i></a> (when
+   defined) and the <a href="#fallback-measure"><i>fallback measure</i></a>
+   as the <a href="#fill-available-measure"><var>fill-available
+   measure</var></a> in the <a href="#fit-content"><i>fit-content</i></a>
+   calculation.
 
   <h4 id=orthogonal-multicol><span class=secno>7.3.2. </span> Multi-column
    Layout in Orthogonal Flows</h4>
@@ -2461,7 +2466,12 @@
     &lsquo;<code class=css>auto</code>&rsquo;, a used &lsquo;<code
     class=property>column-width</code>&rsquo; is calculated for the element
     as the <a href="#fill-available-measure"><i>fill-available
-    measure</i></a>.
+    measure</i></a> using the minimum of the <a
+    href="#fill-available-measure"><i>fill-available measure</i></a> (when
+    defined) and the <a href="#fallback-measure"><i>fallback measure</i></a>
+    as the <a href="#fill-available-measure"><var>fill-available
+    measure</var></a> in the <a href="#fit-content"><i>fit-content</i></a>
+    calculation.
 
    <li>If the columns' extent is not fixed, the <a
     href="#fill-available-extent"><i>fill-available extent</i></a> of the

Index: Overview.src.html
===================================================================
RCS file: /sources/public/csswg/css3-writing-modes/Overview.src.html,v
retrieving revision 1.224
retrieving revision 1.225
diff -u -d -r1.224 -r1.225
--- Overview.src.html	15 Oct 2011 01:26:08 -0000	1.224
+++ Overview.src.html	15 Oct 2011 01:59:04 -0000	1.225
@@ -1776,7 +1776,10 @@
 
   <p>If the computed measure of an element establishing an orthogonal
     flow is ''auto'', then the used measure is calculated as the
-    <i>fit-content</i> (shrink-to-fit) size.
+    <i>fit-content</i> (shrink-to-fit) size using the minimum of the
+    <i>fill-available measure</i> (when defined) and the <i>fallback measure</i>
+    as the <var>fill-available measure</var> in the <i>fit-content</i>
+    calculation.
 
 <h4 id="orthogonal-multicol">
 Multi-column Layout in Orthogonal Flows</h4>
@@ -1788,7 +1791,10 @@
   <ol>
     <li>If 'column-count' and 'column-width' are both ''auto'', a
       used 'column-width' is calculated for the element as the
-      <i>fill-available measure</i>.
+      <i>fill-available measure</i> using the minimum of the
+      <i>fill-available measure</i> (when defined) and the <i>fallback measure</i>
+      as the <var>fill-available measure</var> in the <i>fit-content</i>
+      calculation.
     <li>If the columns' extent is not fixed, the <i>fill-available
       extent</i> of the element is used.
     <li>The used column-count then follows from filling the resulting

Received on Saturday, 15 October 2011 01:59:16 UTC