Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: layout/reftests/svg/reftest.list
<?xml version="1.0"?>
<!--
Any copyright is dedicated to the Public Domain.
-->
<title>Testcase for dynamic rect changes</title>
<script>
document.addEventListener("MozReftestInvalidate", doTest, false);
setTimeout(doTest, 4000); // fallback for running outside reftest
function doTest() {
document.getElementById("rect1").setAttribute("fill", "lime");
document.getElementById("rect2").setAttribute("x", "50");
document.getElementById("rect3").setAttribute("transform", "translate(200,0)");
document.getElementById("rect4").removeAttribute("filter");
document.documentElement.removeAttribute('class');
}
</script>
<filter id="shadow" filterUnits="objectBoundingBox">
<feGaussianBlur in="SourceAlpha" stdDeviation="5"/>
</filter>
<rect id="rect1" x="50" y="100" width="50" height="50" fill="red"/>
<rect id="rect2" x="0" y="200" width="50" height="50" fill="lime"/>
<rect id="rect3" x="0" y="100" width="50" height="50" fill="lime"/>
<rect id="rect4" x="200" y="200" width="50" height="50" filter="url(#shadow)" fill="lime"/>
</svg>