Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / text / textPathBoundsBug.svg
blob7cae871e05b50c4075a25d3662fa6c3b78a73055
1 <?xml version="1.0" encoding="iso-8859-1" standalone="no"?>
2 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:ev="http://www.w3.org/2001/xml-events" width="100%" height="100%">
3 <path id="MyPath" d="M 100 100 L 200 100" stroke="purple" />
4 <text font-family="Arial" font-size="12px" text-anchor="middle">
5 <textPath xlink:href="#MyPath">12345678</textPath>
6 </text>
8 <script>
9 if (window.testRunner)
10 window.testRunner.dumpSelectionRect();
11 var range = document.createRange();
12 range.selectNode(window.document.documentElement);
13 var selection = window.getSelection();
14 selection.removeAllRanges();
15 selection.addRange(range);
16 </script>
17 </svg>