tor-browser

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

clip-path-paddingBox-1b.html (878B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <meta charset="utf-8">
      5    <title>CSS Masking: clip-path: clip path padding-box</title>
      6    <link rel="author" title="CJ Ku" href="mailto:cku@mozilla.com">
      7    <link rel="author" title="Mozilla" href="https://www.mozilla.org">
      8    <link rel="help" href="https://www.w3.org/TR/css-masking-1/#the-clip-path">
      9    <link rel="match" href="clip-path-geometryBox-1-ref.html">
     10    <meta name="assert" content="Test checks whether clip-path padding-box works correctly or not. This test is for clip-path applied to an SVG element.">
     11    <meta name="fuzzy" content="maxDifference=0-62; totalPixels=0-420">
     12  </head>
     13  <body>
     14    <svg width="200" height="200" style="position: absolute; left: 0px; top: 0px;">
     15      <rect x="50" y="50" width="100" height="100" fill="blue"
     16            clip-path="circle(50%) padding-box"/>
     17    </svg>
     18  </body>
     19 </html>