Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: layout/reftests/svg/reftest.list
<!--
Any copyright is dedicated to the Public Domain.
-->
<title>Testcase for dynamic changes to clip-rule</title>
<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>