Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / use-on-disallowed-foreign-object-6.svg
blobabbd1fe4a40caa1e9dbfe24023919e55fd307c7e
1 <?xml version="1.0"?>
2 <svg xmlns="http://www.w3.org/2000/svg"
3 xmlns:xlink="http://www.w3.org/1999/xlink"
4 xmlns:xhtml="http://www.w3.org/1999/xhtml">
6 <defs>
7 <svg id="svg" overflow="visible">
8 <foreignObject x="10" y="10" width="580" height="380" transform="scale(4) skewY(5) skewX(5)">
9 <xhtml:div>You should only see this string ONCE</xhtml:div>
10 </foreignObject>
11 </svg>
12 </defs>
14 <foreignObject x="10" y="10" width="580" height="380" transform="scale(5) skewY(5) skewX(5)">
15 <xhtml:div>You should only see this string ONCE</xhtml:div>
16 </foreignObject>
18 <use id="test" x="25" y="25" xlink:href="#svg"/>
19 <use x="10" y="10" xlink:href="#test"/>
21 </svg>