clip-no-clipping-001.html (776B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Masking: Test clip property does not clip on 'auto'</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/#clip-property"> 8 <link rel="match" href="reference/clip-no-clipping-ref.html"> 9 <meta name="assert" content="The clip property should on 'auto'. On pass 10 you should see a green box with a blue border."> 11 </head> 12 <body> 13 <p>The test passes if there is a green square with a blue border.</p> 14 <div style="width: 100px; height: 100px; border: solid blue 50px; background-color: green; position: absolute; clip: auto"></div> 15 </body> 16 </html>