Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / use-recursion-1.svg
blob2eb0b6abffb0bcb6778da6111630ce891878cbdd
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">
6 <rect id="rect" stroke-width="5px" fill="red" stroke="navy" width="60" height="10"/>
7 <use xlink:href="#g"/>
8 </g>
9 </defs>
11 <text x="10" y="60">This should not crash.</text>
12 <use x="25" y="25" xlink:href="#g"/>
13 </svg>