Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <style> | |
| 3 .grid { | |
| 4 display: inline-grid; | |
|
jfernandez
2016/11/23 15:59:30
Why inline-grid ?
Manuel Rego
2016/11/23 16:24:35
Why not? :-)
Basically it's because it fits bette
| |
| 5 border: thick solid; | |
| 6 height: 50px; | |
| 7 width: 50px; | |
| 8 margin: 50px; | |
| 9 } | |
| 10 | |
| 11 .i1 { | |
| 12 color: cyan; | |
| 13 background: magenta; | |
| 14 font-size: 100px; | |
| 15 } | |
| 16 | |
| 17 .auto { | |
|
jfernandez
2016/11/23 15:59:30
we can save some lines if we define these rules in
Manuel Rego
2016/11/23 16:24:36
Done.
| |
| 18 overflow: auto; | |
| 19 } | |
| 20 | |
| 21 .hidden { | |
|
jfernandez
2016/11/23 15:59:30
ditto.
Manuel Rego
2016/11/23 16:24:35
Done.
| |
| 22 overflow: hidden; | |
| 23 } | |
| 24 </style> | |
| 25 | |
| 26 <p>This test checks that implied minimum size of grid items is only applied if o verflow is visible.</p> | |
| 27 <p>The test passes if in the first grid the item overflows, in the second one it has scrollbars, and in the third one the item doesn't overflow but it doesn't h ave scrollbars.</p> | |
| 28 | |
| 29 <div class="grid"> | |
| 30 <div class="i1">X</div> | |
| 31 </div> | |
| 32 | |
| 33 <div class="grid"> | |
| 34 <div class="i1 auto">X</div> | |
| 35 </div> | |
| 36 | |
| 37 <div class="grid"> | |
| 38 <div class="i1 hidden">X</div> | |
| 39 </div> | |
| OLD | NEW |