Mypal/layout/reftests/svg/dynamic-fill-rule-01.svg

26 lines
921 B
XML
Raw Permalink Normal View History

2019-03-11 10:26:37 +00:00
<!--
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>