gecko-dev/layout/reftests/svg/dynamic-feImage-01.svg
2008-09-14 12:39:29 +01:00

24 lines
919 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/licenses/publicdomain/
-->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" onload="m();">
<title>Testcase for dynamic feImage changes</title>
<!-- From https://bugzilla.mozilla.org/show_bug.cgi?id=448831 -->
<script>
function m() {
var xlinkNS = "http://www.w3.org/1999/xlink";
document.getElementById("feImage").removeAttributeNS(xlinkNS, "href");
}
</script>
<defs>
<filter id="f1" filterUnits="objectBoundingBox" primitiveUnits="objectBoundingBox" x="0" y="0" width="1" height="1">
<feImage id="feImage" x="0" y="0" width="100%" height="100%" style="color-interpolation-filters: srgb;"/>
</filter>
</defs>
<rect width="100%" height="100%" fill="lime"/>
<rect width="100%" height="100%" filter="url(#f1)"/>
</svg>