- From: H?kon Wium Lie via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 09 Mar 2011 01:40:02 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/css3-multicol
In directory hutz:/tmp/cvs-serv21756
Modified Files:
Overview.src.html
Log Message:
slight revision to pseudo-algorithm
Index: Overview.src.html
===================================================================
RCS file: /sources/public/csswg/css3-multicol/Overview.src.html,v
retrieving revision 1.133
retrieving revision 1.134
diff -u -d -r1.133 -r1.134
--- Overview.src.html 9 Mar 2011 01:38:43 -0000 1.133
+++ Overview.src.html 9 Mar 2011 01:40:00 -0000 1.134
@@ -830,12 +830,12 @@
(19) W := max(0, (available-width - ((N - 1) * column-gap))/N);
exit;
-(27) if (column-count = auto) and (column-width != auto) then
+(27) if (column-width != auto) and (column-count = auto) then
(32) N := min(1, floor((available-width + column-gap) / (column-width + column-gap)));
(33) W := ((available-width + column-gap) / N) - column-gap;
exit;
- if (column-count != auto) and (column-width != auto) then
+ if (column-width != auto) and (column-count != auto) then
(39) N := min(column-count, floor((available-width + column-gap) / (column-width + column-gap)))
(40) W := ((available-width + column-gap) / N) - column-gap;
exit
Received on Wednesday, 9 March 2011 01:40:17 UTC