simon.fraser@apple.com | 02fa543 | 2015-03-02 06:35:20 +0000 | [diff] [blame] | 1 | <!DOCTYPE html> |
2 | |||||
3 | <html> | ||||
4 | <head> | ||||
5 | <style> | ||||
6 | .box { | ||||
7 | width: 300px; | ||||
8 | height: 300px; | ||||
9 | background-color: blue; | ||||
10 | } | ||||
11 | |||||
12 | .clipped { | ||||
13 | -webkit-clip-path: inset(0 50px); | ||||
14 | } | ||||
15 | </style> | ||||
16 | </head> | ||||
17 | <body> | ||||
18 | <div class="clipped box"></div> | ||||
19 | </body> | ||||
20 | </html> |