зеркало из https://github.com/mozilla/gecko-dev.git
26 строки
921 B
XML
26 строки
921 B
XML
|
<!--
|
||
|
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>
|
||
|
|