Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / clip-path-with-transform.svg
blob441163dac579fe504bc05bbba8799adbd162fbe4
1 <?xml version="1.0"?>
2 <svg xmlns="http://www.w3.org/2000/svg"
3 xmlns:xlink="http://www.w3.org/1999/xlink">
4 <defs>
5 <clipPath id="myclip">
6 <path transform="scale(.5)" d="M 0 0 l 200 0 l 0 200 l -200 0 Z"/>
7 </clipPath>
8 </defs>
9 <g clip-path="url(#myclip)">
10 <rect x="0" y="0" width="200" height="200" fill="red"/>
11 <rect x="0" y="0" width="100" height="100" fill="green"/>
12 </g>
13 </svg>