csswg/css3-flexbox Overview.html,1.67,1.68 Overview.src.html,1.67,1.68

Update of /sources/public/csswg/css3-flexbox
In directory hutz:/tmp/cvs-serv28342

Modified Files:
	Overview.html Overview.src.html 
Log Message:
Restated how to find the hypothetical size of the flexbox items.

Index: Overview.html
===================================================================
RCS file: /sources/public/csswg/css3-flexbox/Overview.html,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -d -r1.67 -r1.68
--- Overview.html	16 Sep 2011 23:31:59 -0000	1.67
+++ Overview.html	17 Sep 2011 00:12:01 -0000	1.68
@@ -16,12 +16,12 @@
 
    <h1 id=head-box-flexible>CSS Flexible Box Layout Module</h1>
 
-   <h2 class="no-num no-toc" id=w3c-working>Editor's Draft, 16 September 2011</h2>
+   <h2 class="no-num no-toc" id=w3c-working>Editor's Draft, 17 September 2011</h2>
 
    <dl>
     <dt>This version:
 
-    <dd><!-- <a href="http://www.w3.org/TR/2011/WD-css3-flexbox-20110916/">http://www.w3.org/TR/2011/WD-css3-flexbox-20110916/</a></dd> -->
+    <dd><!-- <a href="http://www.w3.org/TR/2011/WD-css3-flexbox-20110917/">http://www.w3.org/TR/2011/WD-css3-flexbox-20110917/</a></dd> -->
      <a
      href="http://dev.w3.org/csswg/css3-flexbox/">http://dev.w3.org/csswg/css3-flexbox/</a>
      
@@ -1358,12 +1358,15 @@
     <li>Reorder flexbox items according to &lsquo;<a
      href="#flex-order0"><code class=property>flex-order</code></a>&rsquo;.
 
-    <li>Find the "hypothetical size" of every flexbox item by treating them
-     like a normal element of their display type and the flexbox like a
-     display:block element, and both the flexbox and the item establish BFCs.
-     Resolve flexible widths/heights by treating them like their preferred
-     size. Resolve &lsquo;<code class=property>auto</code>&rsquo;
-     widths/heights by shrinkwrapping them.
+    <li>
+     <p>Find the "hypothetical size" of every flexbox item.</p>
+
+     <p>Pretend that the flexbox is display:block, and still establishes a
+      BFC. Pretend that the flexbox item is the only child of the flexbox
+      (and also establishes a BFC). Resolve flexible widths/heights into
+      their preferred sizes. Resolve &lsquo;<code
+      class=property>auto</code>&rsquo; widths/heights by shrinkwrapping
+      them. Using all this pretend knowledge, resolve the width and height.</p>
 
     <li>Based on the hypothetical sizes of the items, find the real main size
      of the flexbox and the hypothetical cross size.

Index: Overview.src.html
===================================================================
RCS file: /sources/public/csswg/css3-flexbox/Overview.src.html,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -d -r1.67 -r1.68
--- Overview.src.html	16 Sep 2011 23:31:59 -0000	1.67
+++ Overview.src.html	17 Sep 2011 00:12:01 -0000	1.68
@@ -635,7 +635,11 @@
 		<ol>
 			<li>Reorder flexbox items according to 'flex-order'.</li>
 
-			<li>Find the "hypothetical size" of every flexbox item by treating them like a normal element of their display type and the flexbox like a display:block element, and both the flexbox and the item establish BFCs.  Resolve flexible widths/heights by treating them like their preferred size.  Resolve 'auto' widths/heights by shrinkwrapping them.</li>
+			<li>
+				<p>Find the "hypothetical size" of every flexbox item.</p>
+
+				<p>Pretend that the flexbox is display:block, and still establishes a BFC.  Pretend that the flexbox item is the only child of the flexbox (and also establishes a BFC).  Resolve flexible widths/heights into their preferred sizes.  Resolve 'auto' widths/heights by shrinkwrapping them.  Using all this pretend knowledge, resolve the width and height.</p>
+			</li>
 
 			<li>Based on the hypothetical sizes of the items, find the real main size of the flexbox and the hypothetical cross size.</li>
 

Received on Saturday, 17 September 2011 00:12:09 UTC