tor-browser

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

aspect-ratio-002.html (525B)


      1 <!DOCTYPE html>
      2 <link rel="help" href="https://drafts.csswg.org/css-grid-1/#algo-overview">
      3 <meta name="assert" content="An element with an aspect-ratio resolves its percentage against the definite row.">
      4 <link rel="match" href="../../reference/ref-filled-green-100px-square-only.html">
      5 <p>Test passes if there is a filled green square.</p>
      6 <div style="display: inline-grid; grid-template-rows: 50px 50px; background: green;">
      7  <div style="aspect-ratio: 1/1; height: 100%; grid-row-start: 1; grid-row-end: 3;"></div>
      8 </div>