Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / clip-path-with-css-transform-1.svg
blob385fd6980b7700020e54a2d98d51b4c3fd56308f
1 <svg xmlns="http://www.w3.org/2000/svg"
2 xmlns:xlink="http://www.w3.org/1999/xlink">
3 <defs>
4 <clipPath id="myclip">
5 <path style="transform: scale(.5)" d="M 0 0 l 200 0 l 0 200 l -200 0 Z"/>
6 </clipPath>
7 </defs>
8 <g clip-path="url(#myclip)">
9 <rect x="0" y="0" width="200" height="200" fill="red"/>
10 <rect x="0" y="0" width="100" height="100" fill="green"/>
11 </g>
12 </svg>