tor-browser

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

overflow-img-svg.html (569B)


      1 <!doctype html>
      2 <meta charset="utf-8">
      3 <title>Verifies overflow applies to img elements rendering svg</title>
      4 <link rel="help" href="https://drafts.csswg.org/css-overflow/#propdef-overflow">
      5 <link rel="author" title="Khushal Sagar" href="mailto:khushalsagar@chromium.org">
      6 <link rel="match" href="overflow-img-svg-ref.html">
      7 <style>
      8  .default {
      9    width: 25px;
     10    height: 50px;
     11    object-fit: none;
     12    object-position: 0% 0%;
     13    overflow: visible;
     14  }
     15 </style>
     16 <body>
     17 <img class=default src="../css-images/support/blue-green-red-yellow-50x100.svg"></img>
     18 </body>