Rubber-stamped by Brady Eidson.
[webbrowser.git] / LayoutTests / svg / custom / visibility-override-filter.svg
blob59b44d129dec65aece2859123f492f16a03d0e67
1 <svg xmlns="http://www.w3.org/2000/svg">
2 <defs>
3 <filter id="myfilter" filterUnits="objectBoundingBox" x="0%" y="0%" width="100%" height="100%">
4 <feFlood flood-color="green" flood-opacity="1"/>
5 </filter>
6 </defs>
8 <rect fill="red" height="100px" width="100px"/>
9 <g visibility='hidden' filter='url(#myfilter)'>
10 <rect fill="red" height="100px" width="100px"/>
11 </g>
12 </svg>