summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/currentColor-override-stop.svg
blob: 964dabe2c99690fa35f363abab11af8ec53a868e (plain)
1
2
3
4
5
6
7
8
9
<svg xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="gradient" color="red" stop-color="currentColor">
      <stop offset="0" style="color:lime;" stop-color="inherit" />
      <stop offset="1" stop-color="lime" />
    </linearGradient>
  </defs>
  <rect width="100%" height="100%" fill="url(#gradient)" />
</svg>