summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/filters/dynamic-filter-invalidation-04.svg
blob: 0e12e8d8268409c90e357cd63ae2a09f8d044189 (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
32
<svg xmlns="http://www.w3.org/2000/svg" class="reftest-wait">
  <!--
    From https://bugzilla.mozilla.org/show_bug.cgi?id=488702
  -->
  <title>Test that invalidation takes filters on ancestors into account</title>
  <desc>
    This test checks that when a container element changes, the area of
    the screen that is invalidated and repainted takes account of any
    filter effects on the ancestors of the changed element.
  </desc>
  <script type="text/javascript">//<![CDATA[

function show_lime_rect()
{
  document.getElementById("g").setAttribute("opacity", "1");
  document.documentElement.removeAttribute("class");
}

document.addEventListener("MozReftestInvalidate", show_lime_rect, false);
setTimeout(show_lime_rect, 1000);

  //]]></script>
  <filter id="filter" filterUnits="userSpaceOnUse" x="0" y="0" width="200%" height="100%">
    <feOffset dx="-20"/>
  </filter>
  <rect width="100%" height="100%" fill="red"/>
  <g filter="url(#filter)">
    <g id="g" opacity="0">
      <rect x="20" width="100%" height="100%" fill="lime"/>
    </g>
  </g>
</svg>