Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / transformed-pattern-clamp-svg-root.svg
blob14d48da6bd2d5ba75e37625a998b6c881629e111
1 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="200" width="200">
2 <title>The rectangle should be split; white on the top, green on the bottom.</title>
3 <defs>
4 <linearGradient id="gradient" x2="0%" y2="100%">
5 <stop offset="0" stop-color="white"/>
6 <stop offset="0.5" stop-color="white"/>
7 <stop offset="0.5" stop-color="green"/>
8 <stop offset="1" stop-color="green"/>
9 </linearGradient>
10 <pattern id="shot" patternUnits="userSpaceOnUse" width="400" height="400">
11 <rect height="400" width="400" fill="url(#gradient)"/>
12 </pattern>
13 </defs>
14 <rect transform="translate(0,-100)" x="0" y="100" width="200" height="200" fill="url(#shot)" stroke="black"/>
15 </svg>