Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / use-shadow-root-parent-removal.svg
blob1866f51bac2f6fdea37d58b993ed378210153609
1 <?xml version="1.0"?>
2 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
4 <text id="foreign"/>
5 <use y="50" id="test" xlink:href="#foreign" />
6 <use xlink:href="#test" />
8 <text x="10" y= "30">PASS without crash in debug mode.</text>
10 <script>
11 if (window.testRunner)
12 testRunner.dumpAsText();
13 var elem = document.getElementById("test");
14 elem.removeAttribute("xlink:href");
15 elem.setAttribute("x", 1);
16 </script>
17 </svg>