Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / css / path-gradient-stroke-shadow.svg
blobe2891bc82ee1caf4471fe026356ed8ae924e5f3c
1 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" >
2 <defs>
3 <linearGradient id="gradient" x1="0%" y1="0%" x2="100%" y2="0%">
4 <stop offset="0%" stop-color="red"/>
5 <stop offset="100%" stop-color="blue"/>
6 </linearGradient>
7 <filter id="shadow" width="200%" height="200%">
8 <feOffset result="offOut" in="SourceAlpha" dx="75" dy="75"/>
9 <feGaussianBlur result="blurOut" in="offOut" stdDeviation="10"/>
10 <feBlend in="SourceGraphic" in2="blurOut" mode="normal"/>
11 </filter>
12 </defs>
13 <path d="M100 100 L400 100 L400 400 L100 400 Z" style="fill:rgba(0,0,0,0); stroke-width:50; stroke:url(#gradient); filter:url(#shadow)"/>
14 </svg>