mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
25 lines
796 B
XML
25 lines
796 B
XML
<?xml version="1.0"?>
|
|
<!--
|
|
Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/licenses/publicdomain/
|
|
-->
|
|
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" onload="m();">
|
|
<title>Testcase for dynamic feFlood changes</title>
|
|
<!-- From https://bugzilla.mozilla.org/show_bug.cgi?id=448831 -->
|
|
<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>
|