Update CSS tests to revision 0698c2aa9ead844b6d7d10eafb096cb1118e13ef

This commit is contained in:
Ms2ger 2015-12-09 01:48:05 -05:00
parent 9aa1b1e408
commit 35c74aecc2
11290 changed files with 92400 additions and 49214 deletions

View file

@ -23,7 +23,7 @@
{
column-gap: 0;
column-width: 201px;
/*
N == max(1, floor((U + column-gap)/(column-width + column-gap)))
@ -32,14 +32,14 @@
N == max(1, floor(2.985))
N == max(1, 2)
N == 2;
W == max(0, ((U + column-gap)/N - column-gap))
W == max(0, ((600px + 0px)/2 - 0px))
W == max(0, ((600px)/2 - 0px))
W == max(0, (300px - 0px))
W == max(0, 300px)
W == 300px;
*/
}
@ -58,6 +58,6 @@
1 2 3 4 5 6 7 8<span>A B C D E F G H </span><br>
9 0 1 2 3 4 5 6<span>I J K L M N O P </span>
</div>
</body>
</html>