Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / textPath-insert-path.svg
blob044c816b9f76cf464a153f6bbff93244b8fdf0d6
1 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" onload="runTest()">
2 <text>
3 <textPath id="theTP" xlink:href="#thePath">PASS</textPath>
4 </text>
5 <script><![CDATA[
6 function runTest() {
7 var path = document.createElementNS("http://www.w3.org/2000/svg", "path");
8 path.setAttribute("id", "thePath");
9 path.setAttribute("d", "M50 50 L 450 50");
10 document.rootElement.appendChild(path);
12 ]]></script>
13 </svg>