Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / use-crash-when-href-change.svg
blobb67bd5aee2880f85aea3e4bd440ab6d8ba61d823
1 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" onload="runTest()">
3 <g>
4 <use id="use" xlink:href="#rect" />
5 </g>
7 <defs>
8 <rect id="rect" x="0" y="0" width="100" height="60" />
9 </defs>
11 <text x="10" y= "30">PASS without crash in debug mode.</text>
13 <script>
14 if (window.testRunner)
15 testRunner.dumpAsText();
17 function runTest() {
18 document.getElementById("use").setAttribute("xlink:href", "");
20 </script>
22 </svg>