- From: Tab Atkins Jr.. via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 31 Jan 2012 01:12:32 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/css3-flexbox In directory hutz:/tmp/cvs-serv32182 Modified Files: Overview.html Overview.src.html Log Message: Typos, and more tweaks. Index: Overview.html =================================================================== RCS file: /sources/public/csswg/css3-flexbox/Overview.html,v retrieving revision 1.139 retrieving revision 1.140 diff -u -d -r1.139 -r1.140 --- Overview.html 31 Jan 2012 01:09:40 -0000 1.139 +++ Overview.html 31 Jan 2012 01:12:30 -0000 1.140 @@ -1851,14 +1851,14 @@ <dt>‘<code class=css>max-content</code>’ - <dd>The maximum line length is infinity, constrained by the main and + <dd>The maximum line length is infinity, constrained by the min and max main size constraints of the flexbox. <dt>‘<code class=css>fit-content</code>’ - <dd>The maximum line length is the greater of the flexbox's main size - constraint and the smaller of the flexbox's maximum size constraint - and the available space. + <dd>The maximum line length is the greater of the flexbox's min size + constraint and the smaller of the flexbox's max size constraint and + the available space. </dl> <li>Collect as many consecutive flexbox items as possible, starting from @@ -1880,7 +1880,8 @@ <li>Find the actual main size of the flexbox. If the flexbox's main size doesn't rely on its contents, it's actual main size is calculated per the appropriate rules. Otherwise, its main size is the length of its longest - line. + line, calculated by summing the main sizes of the margin boxes of each + flexbox item in the line. <li>For each flexbox line, <a href="#resolve-the-flexible-lengths"><i>resolve the flexible Index: Overview.src.html =================================================================== RCS file: /sources/public/csswg/css3-flexbox/Overview.src.html,v retrieving revision 1.137 retrieving revision 1.138 diff -u -d -r1.137 -r1.138 --- Overview.src.html 31 Jan 2012 01:09:40 -0000 1.137 +++ Overview.src.html 31 Jan 2012 01:12:30 -0000 1.138 @@ -909,10 +909,10 @@ <dd>The maximum line length is the flexbox's minimum main size.</dd> <dt>''max-content''</dt> - <dd>The maximum line length is infinity, constrained by the main and max main size constraints of the flexbox.</dd> + <dd>The maximum line length is infinity, constrained by the min and max main size constraints of the flexbox.</dd> <dt>''fit-content''</dt> - <dd>The maximum line length is the greater of the flexbox's main size constraint and the smaller of the flexbox's maximum size constraint and the available space.</dd> + <dd>The maximum line length is the greater of the flexbox's min size constraint and the smaller of the flexbox's max size constraint and the available space.</dd> </dt> </li> @@ -924,7 +924,7 @@ <p class='issue'>Define "size doesn't rely on its contents". This should be any <length>, a <percentage> that can be resolved, or ''fill-available''.</p> </li> - <li>Find the actual main size of the flexbox. If the flexbox's main size doesn't rely on its contents, it's actual main size is calculated per the appropriate rules. Otherwise, its main size is the length of its longest line.</li> + <li>Find the actual main size of the flexbox. If the flexbox's main size doesn't rely on its contents, it's actual main size is calculated per the appropriate rules. Otherwise, its main size is the length of its longest line, calculated by summing the main sizes of the margin boxes of each flexbox item in the line.</li> <li>For each flexbox line, <i>resolve the flexible lengths</i> of the items contained within it. All flexbox items now have a final main size. Update each item's hypothetical cross size based on this main size.</li>
Received on Tuesday, 31 January 2012 01:13:21 UTC