tor-browser

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

clip-path-ellipse-007.html (1052B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <title>CSS Masking: Test clip-path property and ellipse function with no arguments</title>
      5 <link rel="author" title="Dirk Schulze" href="mailto:dschulze@adobe.com">
      6 <link rel="help" href="http://www.w3.org/TR/css-masking-1/#clipping-paths">
      7 <link rel="help" href="http://www.w3.org/TR/css-masking-1/#propdef-clip-path">
      8 <link rel="match" href="reference/clip-path-ellipse-ref.html">
      9 <meta name="fuzzy" content="0-38; 0-400">
     10 <meta name="assert" content="The clip-path property takes the basic shape
     11 'ellipse' for clipping. If no further arguments were specified, the radii
     12 are 'closest-side' each. The position is initialised to the center of the
     13 element. On pass there is a full green ellipse.">
     14 <meta name="fuzzy" content="maxDifference=0-59; totalPixels=0-600">
     15 </head>
     16 <body>
     17 <p>The test passes if there is a full green ellipse.</p>
     18 <div style="width: 150px; height: 100px; position: absolute; margin: 50px; background-color: green; clip-path: ellipse(farthest-side closest-side);"></div>
     19 </body>
     20 </html>