Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / xlink-custom-namespace.svg
blobaf556555313cebb577f9506bb74b173bd4a7d34f
1 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xl="http://www.w3.org/1999/xlink">
2 <title>The square should be green.</title>
3 <linearGradient id="gradient2">
4 <stop stop-color="green" stop-offset="0"/>
5 <stop stop-color="green" stop-offset="1"/>
6 </linearGradient>
7 <linearGradient xl:href="#gradient2" id="gradient1"/>
8 <rect fill="red" width="200" height="200"/>
9 <rect fill="url(#gradient1)" width="200" height="200"/>
10 </svg>