blob: b720a1297a52a4e3bbbb9d293f3f06957fe0b932 [file] [log] [blame]
<?xml version="1.0" encoding="iso-8859-1" standalone="no"?>
<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%">
<path id="MyPath" d="M 100 100 L 200 100" stroke="purple" />
<text font-family="Arial" font-size="12px" text-anchor="middle">
<textPath xlink:href="#MyPath">12345678</textPath>
</text>
<script>
if (window.testRunner)
testRunner.dumpSelectionRect();
var range = document.createRange();
range.selectNode(window.document.documentElement);
var selection = window.getSelection();
selection.removeAllRanges();
selection.addRange(range);
</script>
</svg>