removed overline decoration from SVG export because it looks awful.

This commit is contained in:
hneemann 2018-02-23 17:55:47 +01:00
parent 57312fab37
commit f118a6c565

View File

@ -12,7 +12,7 @@ public class GraphicSVGIndexTest extends TestCase {
assertEquals("Z<tspan style=\"font-size:80%;baseline-shift:sub\">0</tspan>", gs.formatText("Z_0", Style.NORMAL));
assertEquals("&lt;a&gt;", gs.formatText("<a>", Style.NORMAL));
assertEquals("<tspan style=\"text-decoration: overline\">Z</tspan>", gs.formatText("~Z", Style.NORMAL));
assertEquals("\u00ACZ", gs.formatText("~Z", Style.NORMAL));
}
}