filter-region-01a.html (650B)
1 <!DOCTYPE html> 2 <body style="background-color: lime;"> 3 <svg width="0" height="0"> 4 <filter id="myFilter" filterUnits="objectBoundingBox" x="0" y="0" width="50%" height="50%"> 5 <feMerge> 6 <feMergeNode/> 7 </feMerge> 8 </filter> 9 </svg> 10 11 <!-- This outer svg element should be totally covered by the next filtered outer svg element. --> 12 <svg style="position: fixed;" x="0" y ="0" width="120" height="120"> 13 <rect x="10" y="10" width="100" height="100" fill="red"/> 14 </svg> 15 16 <svg filter="url(#myFilter)" style="position: fixed;" x="0" y ="0" width="240" height="240"> 17 <rect x="10" y="10" width="100" height="100" fill="lime"/> 18 </svg> 19 20 </body>