Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / pattern-deep-referencing.svg
blob02ca182c14c509572fd0a7a020b56b32bfb82d4a
1 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2 <defs>
3 <pattern id="pattern1f" y="0" xlink:href="#pattern1e"/>
4 <pattern id="pattern1e" x="0" xlink:href="#pattern1d"/>
5 <pattern id="pattern1d" width="50" xlink:href="#pattern1c"/>
6 <pattern id="pattern1c" xlink:href="#pattern1b">
7 <rect x="0" y="0" width="50" height="30" fill="blue" stroke="green"/>
8 </pattern>
9 <pattern id="pattern1b" height="30" xlink:href="#pattern1a"/>
10 <pattern id="pattern1a" patternUnits="userSpaceOnUse"/>
12 <pattern id="pattern1" xlink:href="#pattern1f"/>
14 <pattern id="pattern2" patternUnits="userSpaceOnUse" x="0" y="0" width="50" height="30">
15 <rect x="0" y="0" width="50" height="30" fill="blue" stroke="green"/>
16 </pattern>
17 </defs>
19 <rect transform="translate(50,10)" fill="url(#pattern1)" width="100px" height="100px"/>
20 <rect transform="translate(200,10)" fill="url(#pattern2)" width="100px" height="100px"/>
21 <text x="10" y="150">The above two squares should be blue-red patterns and look identical</text>
22 </svg>