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>
9 var use = document.getElementById('use');
10 use.setAttribute('xlink:href', 'bar.svg#bar');
11 use.parentNode.removeChild(use);
15 if (window.testRunner)
16 testRunner.dumpAsText();