summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/smil/anim-display-in-g-element.svg
blob: 8916aea893b9ebdb2c5208912d24c0ce0c25ccf6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<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 that changes 'display' attribute on an element that is not the immediate parent</title>
  <script xlink:href="smil-util.js" type="text/javascript"/>

  <g display="none" id="g">
    <rect width="100%" height="100%" fill="lime">
      <animate xlink:href="#g"
               attributeName="display"
               values="none;inline"
               calcMode="discrete"
               dur="100s"/>
    </rect>
  </g>

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