grid-auto-min-sizing-min-content-min-size-002.html (2096B)
1 <!DOCTYPE HTML> 2 <!-- 3 Any copyright is dedicated to the Public Domain. 4 https://creativecommons.org/publicdomain/zero/1.0/ 5 --> 6 <html><head> 7 <meta charset="utf-8"> 8 <title>CSS Grid Test: Testing track 'auto' min-sizing function with 'min-width:min-content' on an item with an intrinsic aspect ratio</title> 9 <link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1218178"> 10 <link rel="help" href="https://drafts.csswg.org/css-grid/#min-size-auto"> 11 <link rel="match" href="grid-auto-min-sizing-min-content-min-size-002-ref.html"> 12 <style type="text/css"> 13 html,body { color:black; background-color:white; font:12px monospace; padding:0; margin:0; } 14 15 .grid { 16 display: grid; 17 float: left; 18 border: 1px solid; 19 align-items: start; 20 justify-items: start; 21 margin-bottom: 1em; 22 } 23 24 .col { grid-template-columns:minmax(auto,0.0001fr); grid-auto-rows:10px; } 25 .col img { 26 min-height: 0; 27 min-width: -webkit-min-content; 28 min-width: min-content; 29 } 30 31 br { clear:both; } 32 33 </style> 34 </head> 35 <body> 36 37 38 <script> 39 var coltest = [ 40 "height:30px; max-width:200%", "height:30px; width:200%", "height:30px; width:50%", 41 "width:50%", "max-width:50%", "height:30px", "height:200%; width:80px", "height:50%", 42 "height:50%; width:20px", "max-height:50%", "max-height:50%; max-width:6px", 43 "min-height:40%", "min-height:40%; max-width:30px" 44 ]; 45 46 var h3 = document.createElement('h3'); 47 h3.appendChild(document.createTextNode("grid-template-columns:minmax(auto,0.0001fr)")); 48 document.body.appendChild(h3); 49 for (var i = 0; i < coltest.length; ++i) { 50 var grid = document.createElement('div'); 51 grid.setAttribute("class","grid col"); 52 var img = document.createElement('img'); 53 img.setAttribute("src","support/lime-24x2.png"); 54 img.setAttribute("style",coltest[i]); 55 grid.appendChild(img); 56 document.body.appendChild(document.createTextNode(`Test ${i+1}: 24x2.png -- ${coltest[i]}`)); 57 document.body.appendChild(document.createElement('br')); 58 document.body.appendChild(grid); 59 document.body.appendChild(document.createElement('br')); 60 } 61 </script> 62 63 </body> 64 </html>