xbl-grad-ref--grad-in-bound-03.svg 728 B

1234567891011121314151617181920212223242526
  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. <!-- From https://bugzilla.mozilla.org/show_bug.cgi?id=587585 -->
  7. <title>Test gradient reference in binding for gradient outside &lt;bindings&gt;</title>
  8. <g style="-moz-binding: url(#lime);"/>
  9. <bindings xmlns="http://www.mozilla.org/xbl">
  10. <binding id="lime">
  11. <content>
  12. <rect xmlns="http://www.w3.org/2000/svg"
  13. width="100%" height="100%" fill="url(#grad) lime"/>
  14. </content>
  15. </binding>
  16. </bindings>
  17. <linearGradient id="grad" gradientUnits="userSpaceOnUse">
  18. <stop stop-color="red"/>
  19. </linearGradient>
  20. </svg>