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.4)" stop-opacity="0.5"/> | |
| 4 </linearGradient> | |
| 5 <radialGradient id="rg"> | |
| 6 <stop stop-color="rgba(255,0,0,0.4)" stop-opacity="0.5"/> | |
| 7 </radialGradient> | |
| 8 <rect width="100" height="100" fill="#00ff00"/> | |
| 9 <rect width="50" height="100" fill="url(#lg)"/> | |
| 10 <rect x="50" width="50" height="100" fill="url(#rg)"/> | |
| 11 </svg> | |
| OLD | NEW |