tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

row-auto-repeat-003.html (659B)


      1 <!DOCTYPE html>
      2 <title>Checks that the min-height is reflected through the aspect-ratio for determining auto repeat tracks.</title>
      3 <link rel="help" href="https://drafts.csswg.org/css-grid-3">
      4 <link rel="match" href="../../../../../reference/ref-filled-green-100px-square-only.html">
      5 <link rel="author" title="Alison Maher" href="mailto:almaher@microsoft.com">
      6 <style>
      7 .grid-lanes {
      8    display: inline-grid-lanes;
      9    background: green;
     10    aspect-ratio: 1/1;
     11    grid-lanes-direction: row;
     12    grid-template-rows: repeat(auto-fill, 50px);
     13    min-height: 60px;
     14 }
     15 </style>
     16 <p>Test passes if there is a filled green square.</p>
     17 <div class="grid-lanes"></div>