csswg/css3-flexbox Overview.new.html,1.3,1.4 Overview.new.src.html,1.11,1.12

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

Modified Files:
	Overview.new.html Overview.new.src.html 
Log Message:
Buncha formatting/editorial tweaks.  Nothing significant.


Index: Overview.new.html
===================================================================
RCS file: /sources/public/csswg/css3-flexbox/Overview.new.html,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- Overview.new.html	3 Feb 2011 20:07:16 -0000	1.3
+++ Overview.new.html	23 Feb 2011 01:56:56 -0000	1.4
@@ -1,15 +1,15 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
-<html><head>
-<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
-
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
 
- 
+<html>
+ <head>
   <title>Flexible Box Layout Module</title>
-  <link href="Overview.new_files/W3C-ED.css" rel="stylesheet" type="text/css">
[...1558 lines suppressed...]
 
-     </td><td>no
+     <td>no
 
-     </td><td>specified value
+     <td>specified value
 
-     </td><td>visual
-  </td></tr></tbody></table>
+     <td>visual
+  </table>
   <!--end-properties-->
   <!-- Keep this comment at the end of the file
     Local variables:
@@ -1008,4 +1075,3 @@
     sgml-live-element-indicator:t
     End:
     -->
-</body></html>
\ No newline at end of file

Index: Overview.new.src.html
===================================================================
RCS file: /sources/public/csswg/css3-flexbox/Overview.new.src.html,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- Overview.new.src.html	22 Feb 2011 23:44:10 -0000	1.11
+++ Overview.new.src.html	23 Feb 2011 01:56:56 -0000	1.12
@@ -128,7 +128,7 @@
 		</tbody>
 	</table>
 
-	<p class=issue>The proliferation of "inline-*" display values is untenable and
+	<p class=issue>ISSUE: The proliferation of "inline-*" display values is untenable and
 	restrictive.  Table cells should be able to use the flexbox layout mode for 
 	their contents, for example, rather than being forced to use block layout.
 	It's expected that this will be fixed by splitting the 'display' property
@@ -195,7 +195,7 @@
 				<td>no
 			<tr>
 				<th>Computed Value:
-				<td>See text
+				<td>lr | rl | tb | bt (See text)
 			<tr>
 				<th>Media:
 				<td>visual
@@ -203,7 +203,7 @@
 	</table>
 
 	<p>The 'flexbox-direction' property specifies how flexbox children 
-	are placed on each line of the flexbox.  A value of ''lr'' means that 
+	are placed in the flexbox.  A value of ''lr'' means that 
 	the first flexbox child is placed against the left edge of the flexbox, with 
 	later children placed immediately to the right of the preceding flexbox child.  
 	A value of ''rl'' is the same, but with the initial flexbox child 
@@ -366,7 +366,7 @@
 	<p>CSS then sums the <dfn>preflex size</dfn> of the lengths in each set.  The
 	<i>preflex size</i> of an inflexible length is just the length itself.  The
 	<i>preflex size</i> of a flexible length is its <i>preferred size</i>.  The
-	<i>preferred size</i> defaults to ''0'', and can be set to a different value
+	<dfn>preferred size</dfn> defaults to ''0'', and can be set to a different value
 	with the optional third argument to the ''flex()'' function (defined below).</p>
 
 	<p>If the sum of all the <i title="preflex size">preflex sizes</i> is less than
@@ -392,7 +392,7 @@
 	and <i>negative flexibility</i>, and the <i>preferred size</i>.  The syntax
 	of the ''flex()'' function is:</p>
 
-	<pre class=prod>flex( <i title="positive flexibility">&lt;pos-flex></i>[, <i title="negative flexibility">&lt;neg-flex></i>[, <i title="preferred size">&lt;preferred-size></i>]?]? )</pre>
+	<pre class=prod>flex( <i title="positive flexibility">&lt;pos-flex></i> [, <i title="negative flexibility">&lt;neg-flex></i> [, <i title="preferred size">&lt;preferred-size></i> ]? ]? )</pre>
 
 	<p>The first argument sets the <i>positive flexibility</i> of the length.
 	It must be a non-negative &lt;number> - anything else is a syntax error.</p>
@@ -438,30 +438,30 @@
 
 	<p>Between and around the margins of <i>flexbox children</i> there are additional 
 	flexible lengths, called <dfn>packing space</dfn>.  Packing space can absorb 
-	leftover free space in a flexbox if there aren't any <i>flexible length</i>s 
-	otherwise, or if all the <i>flexible length</i>s have reached their maximum
-	size.  The 'flex-pack' property defines the flexibility of these packing spaces:
+	leftover free space in a flexbox if there aren't any other <i>flexible length</i>s, 
+	or if all the <i>flexible length</i>s have reached their maximum size.  The 
+	'flex-pack' property defines the flexibility of these packing spaces:
 
 	<dl>
-		<dt>start</dt>
-		<dd>Flexbox children must be packed toward the start of the flexbox.  The
+		<dt><dfn>start</dfn></dt>
+		<dd>Flexbox children are packed toward the start of the flexbox.  The
 		last packing space (between the margin of the last flexbox child and the 
 		edge of the flexbox) must absorb all leftover free space; all other packing
 		spaces must have a length of ''0''.</dd>
 
-		<dt>end</dt>
-		<dd>Flexbox children must be packed toward the end of the flexbox.  The
+		<dt><dfn>end</dfn></dt>
+		<dd>Flexbox children are packed toward the end of the flexbox.  The
 		first packing space (between the edge of the flexbox and the margin of the 
 		first flexbox child ) must absorb all leftover free space; all other packing
 		spaces must have a length of ''0''.</dd>
 
-		<dt>center</dt>
-		<dd>Flexbox children must be packed toward the center of the flexbox.  The
+		<dt><dfn>center</dt>
+		<dd>Flexbox children are packed toward the center of the flexbox.  The
 		first and last packing spaces must equally split all leftover free space;
 		all other packing spaces must have a length of ''0''.</dd>
 
 		<dt>justify</dt>
-		<dd>Flexbox children must be evenly distributed through the flexbox.  The
+		<dd>Flexbox children are evenly distributed through the flexbox.  The
 		first and last packing spaces must have a length of ''0''; all other packing
 		spaces must equally split all leftover free space.</dd>
 	</dl>

Received on Wednesday, 23 February 2011 01:57:05 UTC