chromium/third_party/blink/web_tests/paint/invalidation/svg/animate-path-discrete.svg

<?xml version="1.0" encoding="iso-8859-1" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/SVG/DTD/svg10.dtd">
<svg viewBox="0 0 270 400" width="100%" height="100%" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" onload="runRepaintAndPixelTest()">
<script xlink:href="../resources/text-based-repaint.js"/>
<script type="text/ecmascript"> <![CDATA[
window.testIsAsync = true;
// These svg files are animated automatically, so have flaky repaint rect
// output depending on when repaint rect capturing starts.
window.outputRepaintRects = false;
function repaintTest() {
    if (window.testRunner) {
        setTimeout(finishRepaintTest, 200);
    }
}
]]> </script>
    <g id="mainlayer">
    <path stroke="black" stroke-width="5" stroke-linecap="round" stroke-join="round" fill="none" d="M 37 107" >
    <animate attributeName="d" dur="0.1s" fill="freeze" values="
M 37 107 ;
M 37 107 L 40 105 ;
M 37 107 L 40 105 L 45 105 ;
M 37 107 L 40 105 L 45 105 L 52 104
" />
    </path>
    </g>
</svg>