chromium/third_party/blink/web_tests/svg/text/svg-textpath-infinite-loop-crash.html

<!DOCTYPE html>
<html>
<body>
  <div>Test for infinite loop in textPath.</div>
  <div>See bug: https://code.google.com/p/chromium/issues/detail?id=232903</div>

  <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="looper">
    <text>
      <textPath xlink:href="#looper">SVG text</textPath>
    </text>
  </svg>
  <script>
    if (window.testRunner)
      testRunner.dumpAsText();
  </script>
</body>
</html>