Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / text / text-assert.svg
bloba8d7fa37b925bd594aa515d3eeb20eddcc1417a9
1 <?xml version="1.0" encoding="UTF-8"?>
2 <svg xmlns="http://www.w3.org/2000/svg">
3 <defs>
4 <font>
5 <font-face font-family="Arial"/>
6 <missing-glyph/>
7 <glyph horiz-adv-x="667" unicode="S" d="M40 230z"/>
8 </font>
9 </defs>
11 <!--
12 The old SVG text engine fired an assertion, if the <missing-glyph> element is included
13 in the <font> and if a nonexistant glyph is referenced in a different tspan.
14 Moving the 'o' next to the 'S' doesn't trigger it.
15 -->
16 <text style="font-family: Helvetica" x="10" y="20"><tspan>S</tspan><tspan>o</tspan></text>
18 <text y="50">If you see "So" the test passed.</text>
20 <script>
21 if (window.testRunner)
22 testRunner.dumpAsText();
23 </script>
25 </svg>