csswg/css3-flexbox Overview.html,1.94,1.95 Overview.src.html,1.94,1.95

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

Modified Files:
	Overview.html Overview.src.html 
Log Message:
Remove overly-basic example from flex-order that didn't demonstrate any real-world uses.

Index: Overview.html
===================================================================
RCS file: /sources/public/csswg/css3-flexbox/Overview.html,v
retrieving revision 1.94
retrieving revision 1.95
diff -u -d -r1.94 -r1.95
--- Overview.html	18 Jan 2012 02:37:33 -0000	1.94
+++ Overview.html	18 Jan 2012 18:51:55 -0000	1.95
@@ -898,33 +898,6 @@
    appear in the source document.
 
   <div class=example>
-   <p>This example shows how ordinal groups might be used.</p>
-
-   <pre>
-div { display: flexbox; }
-#item1, #item3 { flex-order: 1; }
-#item4 { flex-order: 0; }
-
-&lt;div>
-	&lt;button id="item1">One&lt;/button>
-	&lt;button id="item2">Two&lt;/button>
-	&lt;button id="item3">Three&lt;/button>
-	&lt;button id="item4">Four&lt;/button>
-&lt;/div></pre>
-
-   <p>Items 2 and 4 are both in ordinal group 0 (item 2 defaults to
-    &lsquo;<code class=css>0</code>&rsquo; because it doesn't specify one
-    explicitly). This is the lowest ordinal group, so they'll be displayed
-    first, and in document order, with Item 2 displayed before Item 4. The
-    remaining items are both in ordinal group 1, so the resulting display
-    order will be:</p>
-
-   <div style="border: medium solid green; display: inline-block;">
-    <button>Two</button> <button>Four</button> <button>One</button>
-    <button>Three</button></div>
-  </div>
-
-  <div class=example>
    <p>The following figure shows a simple tabbed interface, where the tab for
     the active pane is always in front:</p>
 

Index: Overview.src.html
===================================================================
RCS file: /sources/public/csswg/css3-flexbox/Overview.src.html,v
retrieving revision 1.94
retrieving revision 1.95
diff -u -d -r1.94 -r1.95
--- Overview.src.html	18 Jan 2012 02:37:34 -0000	1.94
+++ Overview.src.html	18 Jan 2012 18:51:56 -0000	1.95
@@ -388,31 +388,6 @@
 
 	<p>Ordinal groups control the order in which <i>flexbox items</i> appear.  A flexbox will lay out its content starting from the lowest numbered ordinal group and going up.  Items with the same ordinal group are laid out in the order they appear in the source document.
 
-	<div class=example>
-		<p>This example shows how ordinal groups might be used.</p>
-
-		<pre>
-div { display: flexbox; }
-#item1, #item3 { flex-order: 1; }
-#item4 { flex-order: 0; }
-
-&lt;div>
-	&lt;button id="item1">One&lt;/button>
-	&lt;button id="item2">Two&lt;/button>
-	&lt;button id="item3">Three&lt;/button>
-	&lt;button id="item4">Four&lt;/button>
-&lt;/div></pre>
-
-		<p>Items 2 and 4 are both in ordinal group 0 (item 2 defaults to ''0'' because it doesn't specify one explicitly).  This is the lowest ordinal group, so they'll be displayed first, and in document order, with Item 2 displayed before Item 4.  The remaining items are both in ordinal group 1, so the resulting display order will be:</p>
-
-		<div style="border: medium solid green; display: inline-block;">
-			<button>Two</button>
-			<button>Four</button>
-			<button>One</button>
-			<button>Three</button>
-		</div>
-	</div>
-
 	<div class='example'>
 		<p>The following figure shows a simple tabbed interface, where the tab for the active pane is always in front:</p>
 

Received on Wednesday, 18 January 2012 18:52:00 UTC