Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / clip-path-referencing-use2.svg
blob505df21f66061a9b8e8033ddeeb05889d53e5f64
1 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2 <defs>
3 <rect width="50" height="50" id="rect"/>
4 <use id="use" xlink:href="#rect"/>
5 <clipPath id="clip">
6 <use xlink:href="#use" />
7 </clipPath>
8 </defs>
10 <rect width="100" height="100" fill="green" />
11 <g clip-path="url(#clip)">
12 <rect width="100" height="100" fill="red" />
13 </g>
15 <text x="10" y="120">The graphic above should show a 100x100 green rectangle.</text>
16 <text x="10" y="140">The red rectangle should not show since it uses a clipping path that uses an indirect reference.</text>
17 </svg>