text-gradient-01.svg 656 B

12345678910111213141516171819202122
  1. <!--
  2. Any copyright is dedicated to the Public Domain.
  3. http://creativecommons.org/publicdomain/zero/1.0/
  4. -->
  5. <svg xmlns="http://www.w3.org/2000/svg">
  6. <title>Testcase for gradient on text</title>
  7. <!-- From https://bugzilla.mozilla.org/show_bug.cgi?id=424586 -->
  8. <defs>
  9. <linearGradient id="grad" x1="0.0" y1="0.0" x2="1.0" y2="0.0">
  10. <stop stop-color="green" offset="0.0"/>
  11. <stop stop-color="blue" offset="1.0"/>
  12. </linearGradient>
  13. </defs>
  14. <!-- check the gradient moves with the transform -->
  15. <g transform="translate(100,100)">
  16. <text font-size="3.5em" fill="url(#grad)">PASS</text>
  17. </g>
  18. </svg>