Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(10)

Side by Side Diff: LayoutTests/svg/custom/gradient-rgba-stop-color.svg

Issue 126033003: Support colors w/ alpha in SVG 'stop' elements and 'feFlood' (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <svg xmlns="http://www.w3.org/2000/svg">
2 <linearGradient id="lg">
3 <stop stop-color="rgba(255,0,0,0)"/>
krit 2014/01/07 17:46:15 I think it would be great if you would use 0.5 for
4 </linearGradient>
5 <radialGradient id="rg">
6 <stop stop-color="rgba(255,0,0,0)"/>
7 </radialGradient>
8 <rect width="100" height="100" fill="#008000"/>
9 <rect width="50" height="100" fill="url(#lg)"/>
10 <rect x="50" width="50" height="100" fill="url(#rg)"/>
11 </svg>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698