tor-browser

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

overflow-clip-x-visible-y-svg.html (544B)


      1 <!doctype html>
      2 <meta charset="utf-8">
      3 <title>Overflow: can have different clip and visible value in x/y directions with svg</title>
      4 <link rel="help" href="https://www.w3.org/TR/css-overflow-3/#valdef-overflow-clip">
      5 <link rel="author" title="Khushal Sagar" href="mailto:khushalsagar@chromium.org">
      6 <link rel="match" href="overflow-clip-x-visible-y-svg-ref.html">
      7 <style>
      8  svg {
      9    width: 100px;
     10    height: 100px;
     11    overflow-y: visible;
     12    overflow-x: clip;
     13  }
     14 </style>
     15 <svg>
     16  <rect width="150" height="150" fill="green"></rect>
     17 </svg>