Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / clip-path / clip-path-evenodd-nonzero.svg
blob35f83d1f2c0894860c415f1037bdebe2eeb8472a
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 <use x="0" y="0" xlink:href="#star" clip-rule="evenodd"/>
6 <circle cx="170" cy="170" r="70" clip-rule="evenodd"/>
7 <use x="30" y="30" xlink:href="#star" transform="translate(40,40)"/>
8 </clipPath>
9 </defs>
11 <rect x="40" y="40" height="300" width="300" style="fill:green;clip-path:url(#clip);"/>
12 </svg>