Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <svg width="200" height="200" xmlns="http://www.w3.org/2000/svg"> | |
| 2 <filter id="f" x="0" y="0" width="1" height="1" color-interpolation-filters= "sRGB"> | |
| 3 <feFlood flood-color="red"/> | |
| 4 <feComposite operator="lighter" in2="SourceGraphic"/> | |
| 5 </filter> | |
| 6 <linearGradient id="g2b" x1="0" x2="0" y1="0" y2="1"> | |
| 7 <stop offset="0" stop-color="#0f0"/> | |
| 8 <stop offset="1" stop-color="#00f"/> | |
| 9 </linearGradient> | |
| 10 <rect width="200" height="200" fill="url(#g2b)" filter="url(#f)"/> | |
| 11 </svg> | |
| OLD | NEW |