Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / use-display-none.svg
blobf03af846ae5e454520166c0f7e2603817a5bc206
1 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2 <symbol id="a"/>
3 <use id="b" xlink:href="#a"/>
4 <script>
5 if (window.testRunner)
6 testRunner.dumpAsText();
7 b=document.getElementById('b');
8 b.href.baseVal="#a";
9 b.setAttribute("display","none");
10 </script>
11 <text y="20">PASS: The text is displayed and the file did not trigger a crash.</text>
12 </svg>