Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / text / tspan-dynamic-positioning.svg
blobca5c6a0b809370764e7fb2c023d9958414fee540
1 <svg onload="runRepaintAndPixelTest()" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="600" height="500">
2 <script xlink:href="../../fast/repaint/resources/text-based-repaint.js"></script>
3 <title>There should be a sentence of text visible at 200,200.</title>
4 <text y="100"><tspan id="ts" x="20" y="20">This text should be at visible at 200,200</tspan></text>
5 <script>
6 function repaintTest()
8 document.getElementById("ts").setAttribute("x", 200);
9 document.getElementById("ts").setAttribute("y", 200);
11 </script>
12 </svg>