Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / use-on-clip-path-with-transformation.svg
blobc90ca86f03d0816e441dbbb0dcf6083f98474c73
1 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2 <defs>
3 <rect id="rect" x="0" y="0" width=".2" height=".2"/>
4 <clipPath id="clip" clipPathUnits="objectBoundingBox">
5 <use x=".4" y=".4" xlink:href="#rect" transform="rotate(45, .5, .5)"/>
6 </clipPath>
7 </defs>
8 <rect x="0" y="0" height="300" width="300" style="fill:green;clip-path:url(#clip);"/>
9 </svg>