summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/dynamic-feImage-01.svg
blob: 920927790bc3d0eb5b9b885a164951e6c609b736 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0"?>
<!--
     Any copyright is dedicated to the Public Domain.
     http://creativecommons.org/publicdomain/zero/1.0/
-->
<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=455226 -->
	<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"
					 xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAAXNSR0IArs4c6QAAAAxJREFUCNdj+M/AAAADAQEAGN2NsAAAAABJRU5ErkJggg"
					 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>