Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / clip-path / clip-path-with-container.svg
blob5025a1d5a09b8610cc44877b3a51f4b2d4ae5418
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(70,40)"/>
4 <clipPath id="clip">
5 <!-- nothing should be visible, containers are not allowed in clipPath -->
6 <g>
7 <use xlink:href="#star"/>
8 </g>
9 </clipPath>
10 </defs>
12 <rect x="40" y="40" height="300" width="300" style="fill:green;clip-path:url(#clip);"/>
13 </svg>