summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/dynamic-clipPath-clip-rule-01.svg
blob: f6b19bad843242ae5e40f5023890cd618fa82744 (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
<!--
     Any copyright is dedicated to the Public Domain.
     http://creativecommons.org/publicdomain/zero/1.0/
-->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg"
     xmlns:xlink="http://www.w3.org/1999/xlink" class="reftest-wait">
  <title>Testcase for dynamic changes to clip-rule</title>
  <!-- From https://bugzilla.mozilla.org/show_bug.cgi?id=1077993 -->
  <script>

function doTest() {
  document.getElementById("p2").setAttribute("style", "clip-rule: winding;");
  document.documentElement.removeAttribute("class");
}

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

  </script>
  <defs>
    <clipPath id="p2" style="clip-rule:evenodd">
        <path
          d="M100,50 l0,150 50,0 0,-100 -100,0 0,50 150,0 0,-50 -50,0 0,-50 z"/>
    </clipPath>
  </defs>
  <rect width="100%" height="100%" fill="lime"/>
  <path fill-rule="winding" fill="red"
        d="M100,50 l0,150 50,0 0,-100 -100,0 0,50 150,0 0,-50 -50,0 0,-50 z"/>

 <rect width="100%" height="100%" fill="lime" clip-path="url(#p2)"/>
</svg>