Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / use-href-update-crash.svg
blob0f840dbaa2f7ac4e087d3b08ac420a49149189af
1 <?xml version="1.0" encoding="UTF-8"?>
2 <svg xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg">
3 <!-- Test for https://bugs.webkit.org/show_bug.cgi?id=104004 -->
4 <use id="use" xlink:href="foo.svg#foo"/>
5 <text>PASS: did not crash.</text>
7 <script src="../../resources/js-test.js"></script>
8 <script>
9 var use = document.getElementById('use');
10 use.setAttribute('xlink:href', 'bar.svg#bar');
11 use.parentNode.removeChild(use);
12 use = null;
13 gc();
15 if (window.testRunner)
16 testRunner.dumpAsText();
17 </script>
18 </svg>