tor-browser

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

svg-root-as-flex-item-003.html (874B)


      1 <!DOCTYPE html>
      2 <title>SVG root as flex item</title>
      3 <link rel="author" title="David Grogan" href="mailto:dgrogan@chromium.org">
      4 <link rel="help" href="https://drafts.csswg.org/css-flexbox/#algo-main-item" title="Part E">
      5 <link rel="help" href="https://www.w3.org/TR/css-sizing-3/#intrinsic-sizes" title="For boxes with an intrinsic aspect ratio, but no intrinsic size">
      6 <link rel="match" href="../reference/ref-filled-green-100px-square-only.html">
      7 <meta name="assert" content="SVG's intrinsic width when used as flex base size stretches into the available size (minus inline margins) when it has no specified intrinsic sizes." />
      8 
      9 <p>Test passes if there is a filled green square.</p>
     10 
     11 <div style="display: flex; width: 150px;">
     12  <svg viewBox="0 0 200 200" style="margin-right: 50px; flex: 1 0 auto;">
     13    <rect width="100%" height="100%" fill="green" />
     14  </svg>
     15 </div>