Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / clip-path / clip-path-text-and-shape.svg
blob66897b04489902470a1bf251c582138f887b37e2
1 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2 <defs>
3 <path id="star" d="m 100,0 60,170 -160,-110 200,0 -170,110 z" transform="translate(40,40)"/>
4 <clipPath id="clip">
5 <text x="40" y="160" style="font-size:80px;font-weight:bold;">CLIP</text>
6 <use xlink:href="#star" clip-rule="evenodd"/>
7 </clipPath>
8 </defs>
10 <rect x="40" y="40" height="300" width="300" style="fill:green;clip-path:url(#clip);"/>
11 </svg>