summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/dynamic-fill-rule-01.svg
blob: 9fb12f4ae0fa7788f0a72903e562666166ad8e2c (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
<!--
     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" class="reftest-wait">
  <title>Testcase for dynamic changes to fill-rule</title>
  <!-- From https://bugzilla.mozilla.org/show_bug.cgi?id=932762 -->
  <script>

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

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

  </script>
  <path id="p1" style="fill-rule: evenodd;"
        d="M100,50 l0,150 50,0 0,-100 -100,0 0,50 150,0 0,-50 -50,0 0,-50 z"/>
  <path id="p2"
        d="M300,50 l0,150 50,0 0,-100 -100,0 0,50 150,0 0,-50 -50,0 0,-50 z"/>
</svg>