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">
3 <title>Reference for SVG glyphs being painted when painting properties are simple</title>
5 <style>
6 <![CDATA[
7 @font-face {
8 font-family: "Liberation";
9 src: url(resources/svg.woff);
10 }
11 text {
12 font-family: Liberation;
13 font-size: 200px;
14 fill: url(#transparent);
15 }
16 ]]>
17 </style>
19 <linearGradient id="transparent">
20 <stop/>
21 </linearGradient>
23 <!-- The gradient paint server fill is not used by the "L" glyph,
24 but setting it forces the code path that fills and strokes text
25 in the SVG text frame to be chosen. -->
26 <text x="0" y="200">L</text>
27 </svg>