- From: Tab Atkins Jr.. via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 06 Feb 2012 21:40:13 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/css3-flexbox In directory hutz:/tmp/cvs-serv27488 Modified Files: Overview.html Overview.src.html Log Message: Changed 'flex-wrap:no-wrap' to 'flex-wrap:none', added issue about it. Index: Overview.html =================================================================== RCS file: /sources/public/csswg/css3-flexbox/Overview.html,v retrieving revision 1.145 retrieving revision 1.146 diff -u -d -r1.145 -r1.146 --- Overview.html 6 Feb 2012 21:37:05 -0000 1.145 +++ Overview.html 6 Feb 2012 21:40:11 -0000 1.146 @@ -697,12 +697,12 @@ <tr> <th><a href="http://dev.w3.org/csswg/css-module/#values">Value</a>: - <td>no-wrap | wrap | wrap-reverse + <td>none | wrap | wrap-reverse <tr> <th>Initial: - <td>no-wrap + <td>none <tr> <th>Applies To: @@ -827,7 +827,7 @@ class=property>flex-line-pack</code></a>’ properties. <dl> - <dt><dfn id=flex-flow-no-wrap>no-wrap</dfn> + <dt><dfn id=flex-flow-none>none</dfn> <dd>The flexbox is <a href="#single-line"><i>single-line</i></a>. The <a href="#cross-start"><i>cross-start</i></a> direction is equivalent to @@ -835,6 +835,15 @@ whichever is in the <i>cross-axis</i>, and the <a href="#cross-end"><i>cross-end</i></a> direction is the opposite direction of <a href="#cross-start"><i>cross-start</i></a>. + <p class=issue>For consistency with ‘<code + class=property>white-space</code>’, we should use ‘<code + class=css>nowrap</code>’. For consistency with ‘<code + class=property>text-wrap</code>’, we should use ‘<a + href="#flex-flow-none"><code class=css>none</code></a>’. ‘<a + href="#flex-flow-none"><code class=css>none</code></a>’ is the + less dumb of these. Can we switch both this and ‘<code + class=property>text-wrap</code>’ to ‘<code + class=css>no-wrap</code>’?</p> <dt><dfn id=flex-flow-wrap>wrap</dfn> @@ -2464,9 +2473,9 @@ <tr> <th><a class=property href="#flex-wrap">flex-wrap</a> - <td>no-wrap | wrap | wrap-reverse + <td>none | wrap | wrap-reverse - <td>no-wrap + <td>none <td>flexboxes @@ -2620,8 +2629,7 @@ <li>negative flexibility, <a href="#negative-flexibility" title="negative flexibility"><strong>4.</strong></a> - <li>no-wrap, <a href="#flex-flow-no-wrap" - title=no-wrap><strong>3.1.</strong></a> + <li>none, <a href="#flex-flow-none" title=none><strong>3.1.</strong></a> <li>positive flexibility, <a href="#positive-flexibility" title="positive flexibility"><strong>4.</strong></a> Index: Overview.src.html =================================================================== RCS file: /sources/public/csswg/css3-flexbox/Overview.src.html,v retrieving revision 1.143 retrieving revision 1.144 diff -u -d -r1.143 -r1.144 --- Overview.src.html 6 Feb 2012 21:37:06 -0000 1.143 +++ Overview.src.html 6 Feb 2012 21:40:11 -0000 1.144 @@ -292,10 +292,10 @@ <td><dfn>flex-wrap</dfn> <tr> <th><a href="http://dev.w3.org/csswg/css-module/#values">Value</a>: - <td>no-wrap | wrap | wrap-reverse + <td>none | wrap | wrap-reverse <tr> <th>Initial: - <td>no-wrap + <td>none <tr> <th>Applies To: <td>flexboxes @@ -359,8 +359,10 @@ <p>The 'flex-wrap' property controls whether the flexbox is <i>single-line</i> or <i>multi-line</i>, and the direction of the <i>cross axis</i>, which affects the direction new lines are stacked in and the meaning of the 'flex-align', 'flex-item-align', and 'flex-line-pack' properties.</p> <dl> - <dt><dfn id='flex-flow-no-wrap'>no-wrap</dfn></dt> - <dd>The flexbox is <i>single-line</i>. The <i>cross-start</i> direction is equivalent to either the "start" or "before" direction of the current writing mode, whichever is in the <i>cross-axis</i>, and the <i>cross-end</i> direction is the opposite direction of <i>cross-start</i>.</dd> + <dt><dfn id='flex-flow-none'>none</dfn></dt> + <dd>The flexbox is <i>single-line</i>. The <i>cross-start</i> direction is equivalent to either the "start" or "before" direction of the current writing mode, whichever is in the <i>cross-axis</i>, and the <i>cross-end</i> direction is the opposite direction of <i>cross-start</i>. + <p class='issue'>For consistency with 'white-space', we should use ''nowrap''. For consistency with 'text-wrap', we should use ''none''. ''none'' is the less dumb of these. Can we switch both this and 'text-wrap' to ''no-wrap''?</p> + </dd> <dt><dfn id='flex-flow-wrap'>wrap</dfn></dt> <dd>The flexbox is <i>multi-line</i>. The <i>cross-start</i> direction is equivalent to either the "start" or "before" direction of the current writing mode, whichever is in the <i>cross-axis</i>, and the <i>cross-end</i> direction is the opposite direction of <i>cross-start</i>.</dd>
Received on Monday, 6 February 2012 21:40:32 UTC