filter-html-01.xhtml (737B)
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"> 7 <body style="margin:0"> 8 <div style="background:lime; width:200px; height:200px; margin:50px; filter:url(#f1)"/> 9 <svg:svg height="0"> 10 <!-- so that other documents can svg:use this one and force it to 11 load before onload --> 12 <svg:g id="empty" /> 13 <svg:filter id="f1"> 14 <svg:feFlood flood-color="black" result="black"/> 15 <svg:feComposite in="SourceAlpha" operator="in"/> 16 <svg:feOffset dx="10" dy="10"/> 17 <svg:feComposite in="SourceGraphic"/> 18 </svg:filter> 19 </svg:svg> 20 </body> 21 </html>