chromium/third_party/blink/web_tests/paint/invalidation/svg/tspan-dynamic-positioning.svg

<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">
    <script xlink:href="../resources/text-based-repaint.js"></script>
    <title>There should be a sentence of text visible at 200,200.</title>
    <text y="100"><tspan id="ts" x="20" y="20">This text should be at visible at 200,200</tspan></text>
    <script>
        function repaintTest()
        {
            document.getElementById("ts").setAttribute("x", 200);
            document.getElementById("ts").setAttribute("y", 200);
        }
    </script>
</svg>