Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <svg> | |
| 3 <defs> | |
| 4 <rect id="rect" x="0" y="0" width="100" height="100" visibility="visible "/> | |
|
fs
2016/04/29 13:36:13
Nit: Remove x=0 y=0
hyunjunekim2
2016/04/29 14:14:25
Done.
| |
| 5 <clipPath id="clipClip"> | |
| 6 <rect width="100" height="100"/> | |
| 7 </clipPath> | |
| 8 <clipPath id="clip" clip-path="url(#clipClip)"> | |
| 9 <use visibility="hidden" xlink:href="#rect"/> | |
| 10 </clipPath> | |
| 11 </defs> | |
| 12 <rect height="400" width="400" fill="green" clip-path="url(#clip)"/> | |
| 13 </svg> | |
| OLD | NEW |