summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/smil/syncbase/cycle-recursion-2.svg
blob: df859a5305e07a5e110b06d2207d3791ffcd1a7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<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"/>
  <!--
     If we don't detect the cycle here, we'll keep doing reverse propagation for
     a very long time. Probably long enough for something to go really wrong.
   -->
  <rect width="100" height="100" fill="green">
    <animate attributeName="y" attributeType="XML" from="100" to="100" id="a"
      begin="20h; b.begin-1s" dur="4s"/>
    <animate attributeName="fill" attributeType="CSS" id="b"
      values="red; red"
      begin="a.begin-1s" dur="2s"/>
  </rect>
</svg>