summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/text/dynamic-font-size-3-ref.svg
blob: a2f5e5f8e44f8acc290b92ae3c7e072dbaf9a8ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!--
     Any copyright is dedicated to the Public Domain.
     http://creativecommons.org/publicdomain/zero/1.0/
-->
<svg xmlns="http://www.w3.org/2000/svg">
  <style>
    g { font: 32px sans-serif; }
  </style>
  <defs>
    <g>
      <mask id="m" x="0" y="0" width="600" height="400">
        <text x="100" y="100" fill="white"><tspan>abc</tspan><tspan>def</tspan></text>
      </mask>
    </g>
  </defs>
  <rect width="600" height="400" fill="blue" mask="url(#m)"/>
</svg>