Chromium Code Reviews| OLD | NEW |
|---|---|
| (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> | |
| OLD | NEW |