filter-html-zoomed-01.xhtml (625B)
1 <!-- 2 Any copyright is dedicated to the Public Domain. 3 http://creativecommons.org/publicdomain/zero/1.0/ 4 --> 5 <html xmlns="http://www.w3.org/1999/xhtml" 6 xmlns:svg="http://www.w3.org/2000/svg" reftest-zoom="2"> 7 <body style="margin:0"> 8 <div style="background:lime; width:100px; height:100px; margin:25px; filter:url(#f1)"/> 9 <svg:svg height="0"> 10 <svg:filter id="f1"> 11 <svg:feFlood flood-color="black" result="black"/> 12 <svg:feComposite in="SourceAlpha" operator="in"/> 13 <svg:feOffset dx="5" dy="5"/> 14 <svg:feComposite in="SourceGraphic"/> 15 </svg:filter> 16 </svg:svg> 17 </body> 18 </html>