Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / textPath-set-id.svg
blob7b8078e94c2d2ec98049d529c397db1522bfe759
1 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" onload="runTest()">
2 <defs>
3 <path d="M150 50 L 450 50" />
4 </defs>
5 <text>
6 <textPath id="theTP" xlink:href="#foo">FAIL</textPath>
7 </text>
8 <script><![CDATA[
9 function runTest() {
10 var path = document.getElementsByTagName("path")[0];
11 path.parentNode.addEventListener('DOMSubtreeModified', handler);
12 path.setAttribute("id","foo");
13 if (window.testRunner)
14 testRunner.notifyDone();
16 ]]></script>
17 </svg>