chromium/third_party/blink/web_tests/svg/custom/crash-text-in-textpath.svg

<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<text>
    <textPath id="textPath">
        <script>
            if (window.testRunner)
                testRunner.dumpAsText();

            // This triggers a layout before adding the #text node.
            document.getElementById('textPath').scrollIntoView('foo');
        </script>
        foo    
        <script>
            // This triggers a layout after adding the #text node to fire the ASSERT.
            document.getElementById('textPath').scrollIntoView('foo');
        </script>
    </textPath>
</text>
<text x="10" y="50">Test for bug <a xlink:href="https://bugs.webkit.org/show_bug.cgi?id=63076">63076</a>: Assertion failure in LayoutSVGInlineText::characterStartsNewTextChunk</text>
<text x="10" y="100">This test passes if it does not crash</text>
</svg>