OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <head> | |
3 <link href="resources/grid.css" rel="stylesheet"/> | |
4 <style> | |
5 .grid { | |
6 font: 10px/1 Ahem; | |
7 } | |
8 .gridAutoAndAuto { | |
9 grid-template-columns: auto auto; | |
10 } | |
11 | |
12 .gridFixedMaxContentAndFixedMaxContent { | |
13 grid-template-columns: minmax(20px, max-content) minmax(10px, max-content); | |
14 } | |
15 </style> | |
16 <script src="../../resources/js-test.js"></script> | |
17 </head> | |
18 <body> | |
19 <script src="resources/grid-definitions-parsing-utils.js"></script> | |
20 | |
21 <div class="grid gridAutoAndAuto" id="gridAutoAndAuto"> | |
22 <div class="firstRowFirstColumn">X</div> | |
23 <div class="firstRowBothColumn">XXXXXX XXX</div> | |
Manuel Rego
2015/06/26 11:09:47
I guess that both items are in the first row is no
svillar
2015/06/29 07:08:27
Why weird? The behavior is exactly the same, the a
Manuel Rego
2015/06/29 07:46:42
I mean weird from an outsider point of view,
that
| |
24 </div> | |
25 | |
26 <div class="grid gridFixedMaxContentAndFixedMaxContent" id="gridFixedMaxContentA ndFixedMaxContent"> | |
27 <div class="firstRowFirstColumn">XX</div> | |
Manuel Rego
2015/06/26 11:09:47
Wouldn't be better to have just one "X" here?
That
svillar
2015/06/29 07:08:27
Well this is test was made to check the infinitely
Manuel Rego
2015/06/29 07:46:42
Yeah, it's not related to this maybe you can've bo
| |
28 <div class="firstRowBothColumn">XXXX X XXX</div> | |
29 </div> | |
30 | |
31 <script> | |
32 testGridDefinitionsValues(gridAutoAndAuto, "10px 90px", "10px"); | |
33 testGridDefinitionsValues(gridFixedMaxContentAndFixedMaxContent, "20px 80px", "1 0px"); | |
34 </script> | |
35 | |
36 </body> | |
OLD | NEW |