Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
1 <svg xmlns="http://www.w3.org/2000/svg">
2 <style type="text/css">
3 <![CDATA[
4 @font-face {
5 font-family: "Liberation";
6 src:url(resources/svg.woff);
7 }
8 text
9 {
10 font-family: Liberation;
11 font-size: 100px;
12 }
13 ]]>
14 </style>
15 <!--
16 Test that transforms within SVG glyph documents are applied properly
17 -->
18 <text x="0" y="100">
19 g
20 </text>
21 <text x="0" y="200">
22 g
23 </text>
24 <text x="0" y="300">
25 g
26 </text>
28 <text x="100" y="100">
29 g
30 </text>
31 <text x="100" y="200">
32 g
33 </text>
34 <text x="100" y="300">
35 g
36 </text>
38 <text x="200" y="100">
39 g
40 </text>
41 <!-- note that the next two are different from the preceding glyphs! -->
42 <text x="200" y="200">
43 q
44 </text>
45 <text x="200" y="300">
46 q
47 </text>
48 </svg>