summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/smil/syncbase/cycle-self-ref-3.svg
blob: 50fdaf97393ae1759e6e1247b5a915490a505bc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<svg xmlns="http://www.w3.org/2000/svg"
     xmlns:xlink="http://www.w3.org/1999/xlink"
     class="reftest-wait"
     onload="setTimeAndSnapshot(2, true)">
  <script xlink:href="../smil-util.js" type="text/javascript"/>
  <!--
    A valid self-referential cycle.

    We have a 4s animation which should give us green after 1s of its active
    duration. The active duration is constrained to 2s using a self-referential
    end spec. Furthermore a self-referential begin spec causes the animation to
    restart as soon as it begins.
   -->
  <rect width="100" height="100" fill="red">
    <animate attributeName="fill" attributeType="CSS" id="a"
      values="orange; green; blue; yellow; purple"
      begin="a.end; -1s" end="a.begin+2s" dur="4s"/>
  </rect>
</svg>