Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / use-transform.svg
blob36fa15217b44a5b605fe6a81d3537815e18aa7e8
1 <?xml version="1.0" standalone="no"?>
2 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3 <svg width="800" height="600" viewBox="0 0 400 300" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
4 <defs>
5 <g id="g" transform="rotate(-45 30 5)">
6 <rect stroke-width="5px" fill="red" stroke="navy" width="60" height="10"/>
7 <circle opacity="0.5" fill="green" cx="30" cy="5" r="10"/>
8 </g>
9 </defs>
11 <g transform="translate(125 25)">
12 <g transform="rotate(40 30 5)">
13 <g transform="rotate(-45 30 5)">
14 <rect stroke-width="5px" fill="red" stroke="navy" width="60" height="10"/>
15 <circle opacity="0.5" fill="green" cx="30" cy="5" r="10"/>
16 </g>
17 </g>
18 </g>
20 <text x="10" y="60">The two objects should look identical.</text>
22 <g transform="rotate(40 55 30)">
23 <use x="25" y="25" xlink:href="#g"/>
24 </g>
26 </svg>