tor-browser

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

background-size-cover-svg-view.html (578B)


      1 <!DOCTYPE html>
      2 <title>SVG &lt;view>-based sprites in background-image, background-size: cover</title>
      3 <link rel="help" href="https://drafts.csswg.org/css-backgrounds/#background-size">
      4 <link rel="match" href="../../reference/ref-filled-green-100px-square-only.html">
      5 <style>
      6  #target {
      7    width: 100px;
      8    height: 100px;
      9    background-image: url('support/sprite-view-no-viewbox.svg#rect');
     10    background-repeat: no-repeat;
     11    background-position: 50%;
     12    background-size: cover;
     13  }
     14 </style>
     15 <p>Test passes if there is a filled green square.</p>
     16 <div id="target"></div>