2008-10-06 06:45:01 -07:00
|
|
|
<?xml version="1.0"?>
|
2008-09-14 04:02:10 -07:00
|
|
|
<!--
|
|
|
|
Any copyright is dedicated to the Public Domain.
|
2011-06-21 05:19:35 -07:00
|
|
|
http://creativecommons.org/publicdomain/zero/1.0/
|
2008-09-14 04:02:10 -07:00
|
|
|
-->
|
|
|
|
<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>
|
2008-10-06 06:45:01 -07:00
|
|
|
<!-- From https://bugzilla.mozilla.org/show_bug.cgi?id=455226 -->
|
2008-09-14 04:02:10 -07:00
|
|
|
<script>
|
|
|
|
function m() {
|
|
|
|
var xlinkNS = "http://www.w3.org/1999/xlink";
|
|
|
|
document.getElementById("feImage").removeAttributeNS(xlinkNS, "href");
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<defs>
|
2008-10-06 06:45:01 -07:00
|
|
|
<filter id="f1" filterUnits="objectBoundingBox" primitiveUnits="objectBoundingBox"
|
|
|
|
x="0" y="0" width="1" height="1">
|
|
|
|
|
|
|
|
<feImage id="feImage"
|
|
|
|
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAAXNSR0IArs4c6QAAAAxJREFUCNdj+M/AAAADAQEAGN2NsAAAAABJRU5ErkJggg"
|
|
|
|
x="0" y="0" width="100%" height="100%"
|
|
|
|
style="color-interpolation-filters:sRGB"/>
|
2008-09-14 04:02:10 -07:00
|
|
|
</filter>
|
|
|
|
</defs>
|
|
|
|
<rect width="100%" height="100%" fill="lime"/>
|
|
|
|
<rect width="100%" height="100%" filter="url(#f1)"/>
|
2008-09-14 04:39:29 -07:00
|
|
|
</svg>
|