Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / textPath-change-reference2.svg
blob9ca329f7964819692c7b96a1669934835ae1f13b
1 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2 <path id="visiblePath" d="M150 50 L 450 50" />
3 <text x="50" y="50">PASS</text>
4 <text>
5 <textPath id="failText" xlink:href="#visiblePath">FAIL</textPath>
6 </text>
7 <script><![CDATA[
8 var failText = document.getElementById("failText");
9 failText.setAttributeNS("http://www.w3.org/1999/xlink", "href", "#notVisiblePath");
10 ]]></script>
11 </svg>