filter-region-01b.html (722B)
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 <svg style="position: fixed;" x="0" y ="0" width="400" height="400"> 12 <!-- This filtered inner element should be covered by the next outer svg element. --> 13 <svg filter="url(#myFilter)" style="position: fixed;" x="0" y ="0" width="200" height="200"> 14 <rect x="10" y="10" width="120" height="120" fill="red"/> 15 </svg> 16 </svg> 17 18 <svg style="position: fixed;" x="0" y ="0" width="120" height="120"> 19 <rect x="10" y="10" width="100" height="100" fill="lime"/> 20 </svg> 21 22 </body>