summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/smil/anim-defs-gradient-property.svg
blob: 11cc58687e4465a88ce4f586993715947c58b97b (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
<svg version="1.1" xmlns="http://www.w3.org/2000/svg"
     xmlns:xlink="http://www.w3.org/1999/xlink"
     class="reftest-wait">

  <title>Test animation of gradient property in 'defs' element</title>
  <script xlink:href="smil-util.js" type="text/javascript"/>

  <rect fill="url(#gradient)" width="100%" height="100%"/>
  <defs>
    <linearGradient id="gradient">
      <stop>
        <animate attributeName="stop-color"
                 values="red;lime"
                 calcMode="discrete"
                 dur="100s"/>
      </stop>
    </linearGradient>
  </defs>

  <script>
    window.addEventListener("MozReftestInvalidate", function() {
      setTimeAndWaitToSnapshot(49.9, 0.1);
    });
  </script>
</svg>