Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / text / text-style-invalid.svg
blob3d6be8025679fa80ddd9d8607fb470d32adcf476
1 <svg xmlns="http://www.w3.org/2000/svg">
2 <foreignObject>
3 <body xmlns="http://www.w3.org/1999/xhtml">
4 <div style="position:absolute">This test passes if we do NOT crash while rendering SVG text with CSS styles :first-letter and :first-line.</div>
5 </body>
6 </foreignObject>
7 <style>
8 text:first-letter { color: red }
9 text:first-line { color: red }
10 </style>
11 <text x="10" y="50">Some text</text>
12 <script>
13 if (window.testRunner)
14 testRunner.dumpAsText();
15 </script>
16 </svg>