blob: 09ef63b92ee12aac0180bb50fe0e767c06ab7922 [file] [log] [blame]
simon.fraser@apple.com02fa5432015-03-02 06:35:20 +00001<!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>