summaryrefslogtreecommitdiffstats
path: root/layout/reftests/text-svgglyphs/svg-glyph-direct-ref.svg
blob: 67a5fb8d23ef643a6dacd1f0a876655e83b7de8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<svg xmlns="http://www.w3.org/2000/svg">

  <title>Reference for SVG glyphs being painted when painting properties are simple</title>

  <style>
    <![CDATA[
      @font-face {
        font-family: "Liberation";
        src: url(resources/svg.woff);
      }
      text {
        font-family: Liberation;
        font-size: 200px;
        fill: url(#transparent);
      }
    ]]>
  </style>

  <linearGradient id="transparent">
    <stop/>
  </linearGradient>

  <!-- The gradient paint server fill is not used by the "L" glyph,
       but setting it forces the code path that fills and strokes text
       in the SVG text frame to be chosen. -->
  <text x="0" y="200">L</text>
</svg>