Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / text / svg-textpath-infinite-loop-crash.html
blob4d67923a6676ab76f823d6acc0b58b6d4e4d8ed4
1 <!DOCTYPE html>
2 <html>
3 <body>
4 <div>Test for infinite loop in textPath.</div>
5 <div>See bug: https://code.google.com/p/chromium/issues/detail?id=232903</div>
7 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="looper">
8 <text>
9 <textPath xlink:href="#looper">SVG text</textPath>
10 </text>
11 </svg>
12 <script>
13 if (window.testRunner)
14 testRunner.dumpAsText();
15 </script>
16 </body>
17 </html>