Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / recursive-use.svg
blob891b6cfb9251d6b8116711f51edfb141d330df6f
1 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2 <defs>
3 <polygon id="pt" points="-1,0 0,-0.5 1,0"/>
4 <g id="u">
5 <use xlink:href="#pt">
6 <use xlink:href="#u"/>
7 </use>
8 </g>
9 </defs>
10 <text x="10" y= "30">PASS without crash.</text>
11 <script>
12 if (window.testRunner)
13 testRunner.dumpAsText();
14 </script>
15 </svg>