summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/filters/dynamic-filter-invalidation-01.svg
blob: ba8e5bb421a70ef499d5a3d5066188d551d9d296 (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
33
34
35
36
<!--
     Any copyright is dedicated to the Public Domain.
     http://creativecommons.org/publicdomain/zero/1.0/
-->
<svg xmlns="http://www.w3.org/2000/svg" class="reftest-wait">
  <!-- From https://bugzilla.mozilla.org/show_bug.cgi?id=879682 -->
  <script>

var NS_SVG = 'http://www.w3.org/2000/svg';

function run_test() {
  var gNode = document.createElementNS(NS_SVG, "g");
  gNode.setAttribute('filter', 'url(#filter)');

  var rect = document.createElementNS(NS_SVG, 'rect');
  rect.setAttribute('width', '100');
  rect.setAttribute('height', '100');
  rect.setAttribute('fill', 'white');
  gNode.appendChild(rect);

  document.documentElement.appendChild(gNode);
  document.documentElement.removeAttribute("class");
}

document.addEventListener("MozReftestInvalidate", run_test);
setTimeout(run_test, 4000); // fallback for running outside reftest

  </script>
  <filter id="filter" x="20" y="20" width="100" height="100"
          filterUnits="userSpaceOnUse"
          primitiveUnits="userSpaceOnUse">
    <feFlood flood-color="lime"/>
  </filter>
  <rect width="100%" height="100%" fill="lime"/>
  <rect x="20" y="20" width="100" height="100" fill="red"/>
</svg>