Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <?xml version="1.0" encoding="UTF-8"?> | |
| 2 <svg width="800" height="600" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="ht tp://www.w3.org/1999/xlink"> | |
| 3 <defs> | |
| 4 <filter id="greenify"> | |
| 5 <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1"/> | |
| 6 </filter> | |
| 7 </defs> | |
| 8 | |
| 9 <rect x="100" y="50" width="200" height="100" filter="url(#greenify)"/> | |
| 10 <rect x="100" y="200" width="200" height="100" filter="url(#greenify)"/> | |
| 11 <rect x="100" y="350" width="200" height="100" filter="url(#greenify)"/> | |
| 12 <rect x="100" y="500" width="200" height="100" filter="url(#greenify)"/> | |
| 13 | |
| 14 </svg> | |
| OLD | NEW |