summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/filters/dynamic-filter-invalidation-03.svg
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/svg/filters/dynamic-filter-invalidation-03.svg')
-rw-r--r--layout/reftests/svg/filters/dynamic-filter-invalidation-03.svg30
1 files changed, 30 insertions, 0 deletions
diff --git a/layout/reftests/svg/filters/dynamic-filter-invalidation-03.svg b/layout/reftests/svg/filters/dynamic-filter-invalidation-03.svg
new file mode 100644
index 0000000000..4fc7dc8857
--- /dev/null
+++ b/layout/reftests/svg/filters/dynamic-filter-invalidation-03.svg
@@ -0,0 +1,30 @@
+<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 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 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 id="g" opacity="0" filter="url(#filter)">
+ <rect x="20" width="100%" height="100%" fill="lime"/>
+ </g>
+</svg>