grid-auto-min-sizing-transferred-size-001.html (2024B)
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:auto' 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-transferred-size-001-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 { min-height:0; } 26 27 br { clear:both; } 28 29 </style> 30 </head> 31 <body> 32 33 <script> 34 var coltest = [ 35 "height:30px; max-width:48px", "height:30px; width:48px", "height:30px; width:12px", 36 "width:12px", "max-width:12px", "height:30px", "height:4px; width:80px", "height:1px", 37 "height:1px; width:20px", "max-height:1px", "max-height:1px; max-width:6px", 38 "min-height:4px", "min-height:4px; max-width: 30px" 39 ]; 40 41 var h3 = document.createElement('h3'); 42 h3.appendChild(document.createTextNode("grid-template-columns:minmax(auto,0.0001fr)")); 43 document.body.appendChild(h3); 44 for (var i = 0; i < coltest.length; ++i) { 45 var grid = document.createElement('div'); 46 grid.setAttribute("class","grid col"); 47 var img = document.createElement('img'); 48 img.setAttribute("src","support/lime-24x2.png"); 49 img.setAttribute("style",coltest[i]); 50 grid.appendChild(img); 51 document.body.appendChild(document.createTextNode(`Test ${i+1}: 24x2.png -- ${coltest[i]}`)); 52 document.body.appendChild(document.createElement('br')); 53 document.body.appendChild(grid); 54 document.body.appendChild(document.createElement('br')); 55 } 56 </script> 57 58 </body> 59 </html>