summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/smil/anim-filter-size-01.svg
blob: e047b89d9267da13e190cbabd9c5014c2bf0c4a9 (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
26
27
28
29
30
31
<svg xmlns="http://www.w3.org/2000/svg"
     xmlns:xlink="http://www.w3.org/1999/xlink"
     class="reftest-wait">
  <title>Test animation of the "width" and "height" attributes of the "filter" element</title>
  <script xlink:href="smil-util.js" type="text/javascript"/>
  <script>

window.addEventListener("MozReftestInvalidate", run, false);
setTimeout(run, 4000); // fallback for running outside reftest

function run() {
  setTimeAndSnapshot(1, true)
}

  </script>
  <filter id="flood_filter" x="0%" y="0%" width="0%" height="0%">
    <animate attributeName="width"
             calcMode="linear"
             begin="0s" dur="2s"
             from="0%" to="200%"
             fill="freeze"/>
    <animate attributeName="height"
             calcMode="linear"
             begin="0s" dur="1s"
             from="0%" to="100%"
             fill="freeze"/>
    <feFlood width="100%" height="100%" flood-color="lime"/>
  </filter>
  <rect width="100%" height="100%" fill="red"/>
  <rect width="100%" height="100%" fill="red" filter="url(#flood_filter)"/>
</svg>