- From: Tab Atkins Jr.. via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 26 Jan 2012 23:41:19 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/css3-flexbox
In directory hutz:/tmp/cvs-serv25952
Modified Files:
Overview.html Overview.src.html
Log Message:
Correct the explanatory note to actually match the layout algorithm.
Index: Overview.html
===================================================================
RCS file: /sources/public/csswg/css3-flexbox/Overview.html,v
retrieving revision 1.114
retrieving revision 1.115
diff -u -d -r1.114 -r1.115
--- Overview.html 26 Jan 2012 23:33:00 -0000 1.114
+++ Overview.html 26 Jan 2012 23:41:17 -0000 1.115
@@ -1756,23 +1756,13 @@
<li>Reorder flexbox items according to ‘<a
href="#flex-order0"><code class=property>flex-order</code></a>’.
- <li>
- <p>Find the "hypothetical size" of every flexbox item.</p>
+ <li>Find the "hypothetical size" of every flexbox item.
- <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 ‘<code
- class=property>auto</code>’ widths/heights by shrinkwrapping
- them. Using all this pretend knowledge, resolve the width and height.</p>
+ <li>Linebreak the flexbox, if it's multi-line.
<li>Based on the hypothetical sizes of the items, find the real main size
of the flexbox and the hypothetical cross size.
- <li>Based on both of these, linebreak the flexbox if it's multi-line. (Or
- does the possibility of linebreaking affect the main size of the
- flexbox, in a shrinkwrapping way?)
-
<li>Resolve any flexible lengths. All items now have a real main size.
<li>Align in the main axis, per ‘<a href="#flex-pack0"><code
Index: Overview.src.html
===================================================================
RCS file: /sources/public/csswg/css3-flexbox/Overview.src.html,v
retrieving revision 1.113
retrieving revision 1.114
diff -u -d -r1.113 -r1.114
--- Overview.src.html 26 Jan 2012 23:32:36 -0000 1.113
+++ Overview.src.html 26 Jan 2012 23:41:17 -0000 1.114
@@ -851,16 +851,12 @@
<ol>
<li>Reorder flexbox items according to 'flex-order'.</li>
- <li>
- <p>Find the "hypothetical size" of every flexbox item.</p>
+ <li>Find the "hypothetical size" of every flexbox item.</li>
- <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>Linebreak the flexbox, if it's multi-line.</li>
<li>Based on the hypothetical sizes of the items, find the real main size of the flexbox and the hypothetical cross size.</li>
- <li>Based on both of these, linebreak the flexbox if it's multi-line. (Or does the possibility of linebreaking affect the main size of the flexbox, in a shrinkwrapping way?)</li>
-
<li>Resolve any flexible lengths. All items now have a real main size.</li>
<li>Align in the main axis, per 'flex-pack'.</li>
Received on Thursday, 26 January 2012 23:41:20 UTC