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 feFlood changes</title>
<script>
function m() {
document.getElementById("feFlood").setAttribute("flood-color", "lime");
}
</script>
<defs>
<filter id="f1" filterUnits="objectBoundingBox" primitiveUnits="objectBoundingBox"
x="0" y="0" width="1" height="1">
<feFlood id="feFlood" x="0" y="0" width="100%" height="100%" flood-color="red"/>
</filter>
</defs>
<g filter="url(#f1)">
<rect x="0" y="0" width="100%" height="100%" fill="red" opacity="0"/>
</g>
</svg>