- From: Tab Atkins Jr.. via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 17 Feb 2012 21:16:25 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/css3-flexbox
In directory hutz:/tmp/cvs-serv22454
Modified Files:
Overview.html Overview.src.html
Log Message:
Fixed the 'flex' grammar. Fixed a typo.
Index: Overview.html
===================================================================
RCS file: /sources/public/csswg/css3-flexbox/Overview.html,v
retrieving revision 1.157
retrieving revision 1.158
diff -u -d -r1.157 -r1.158
--- Overview.html 17 Feb 2012 01:22:12 -0000 1.157
+++ Overview.html 17 Feb 2012 21:16:23 -0000 1.158
@@ -29,11 +29,11 @@
<h1 id=head-box-flexible>CSS Flexible Box Layout Module</h1>
- <h2 class="no-num no-toc" id=w3c-working>Editor's Draft, 16 February 2012</h2>
+ <h2 class="no-num no-toc" id=w3c-working>Editor's Draft, 17 February 2012</h2>
<dl>
<dt>This version:
- <!--<dd><a href="http://www.w3.org/TR/2012/ED-css3-flexbox-20120216/">http://www.w3.org/TR/2012/ED-css3-flexbox-20120216/</a>-->
+ <!--<dd><a href="http://www.w3.org/TR/2012/ED-css3-flexbox-20120217/">http://www.w3.org/TR/2012/ED-css3-flexbox-20120217/</a>-->
<dd><a
@@ -1082,8 +1082,7 @@
<tr>
<th><a href="http://dev.w3.org/csswg/css-module/#values">Value</a>:
- <td>[[ <pos-flex> <neg-flex>? ]? &&
- [<preferred-size>]?] | none
+ <td>[ [ <pos-flex> <neg-flex>? ] || <preferred-size> ] | none
<tr>
<th>Initial:
@@ -1126,7 +1125,7 @@
class=property>none</code></a>’ is the way around it.
<p>The ‘<a href="#flex"><code class=property>flex</code></a>’
- property specifiex the parameters of a <dfn id=flexible-length
+ property specifies the parameters of a <dfn id=flexible-length
title="flexible length|flexible lengths|flexible length's">flexible
length</dfn>: the <dfn id=positive-flexibility
title="positive flexibility">positive</dfn> and <dfn
@@ -2673,8 +2672,7 @@
<tr>
<th><a class=property href="#flex">flex</a>
- <td>[[ <pos-flex> <neg-flex>? ]? &&
- [<preferred-size>]?] | none
+ <td>[ [ <pos-flex> <neg-flex>? ] || <preferred-size> ] | none
<td>none
Index: Overview.src.html
===================================================================
RCS file: /sources/public/csswg/css3-flexbox/Overview.src.html,v
retrieving revision 1.155
retrieving revision 1.156
diff -u -d -r1.155 -r1.156
--- Overview.src.html 17 Feb 2012 01:22:13 -0000 1.155
+++ Overview.src.html 17 Feb 2012 21:16:23 -0000 1.156
@@ -520,7 +520,7 @@
<td><dfn>flex</dfn>
<tr>
<th><a href="http://dev.w3.org/csswg/css-module/#values">Value</a>:
- <td>[[ <pos-flex> <neg-flex>? ]? && [<preferred-size>]?] | none
+ <td>[ [ <pos-flex> <neg-flex>? ] || <preferred-size> ] | none
<tr>
<th>Initial:
<td>none
@@ -546,7 +546,7 @@
But if flex is specified, we want default preferred size of 0px.
The new keyword 'none' is the way around it.
- <p>The 'flex' property specifiex the parameters of a <dfn title="flexible length|flexible lengths|flexible length's">flexible length</dfn>: the <dfn id="positive-flexibility" title="positive flexibility">positive</dfn> and <dfn>negative flexibility</dfn>, and the <dfn>preferred size</dfn>.
+ <p>The 'flex' property specifies the parameters of a <dfn title="flexible length|flexible lengths|flexible length's">flexible length</dfn>: the <dfn id="positive-flexibility" title="positive flexibility">positive</dfn> and <dfn>negative flexibility</dfn>, and the <dfn>preferred size</dfn>.
<p><code><pos-flex></code> and <code><neg-flex></code> are non-negative <code><numbers>s</code>,
while <code><preferred-size></code> is any value that would be valid in the
Received on Friday, 17 February 2012 21:16:27 UTC