Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"> | 1 <svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"> |
| 2 <defs> | 2 <defs> |
| 3 <pattern id="green" x="0" y="0" width="100" height="100"> | 3 <pattern id="green" x="0" y="0" width="100" height="100" patternUnits="userS paceOnUse"> |
|
Erik Dahlström (inactive)
2014/08/08 08:01:02
I'm curious, why was this change needed?
f(malita)
2014/08/08 15:30:35
Before I've added tile clamping in Skia, the defau
| |
| 4 <rect x="0" y="0" width="100" height="100" fill="green"/> | 4 <rect x="0" y="0" width="100" height="100" fill="green"/> |
| 5 </pattern> | 5 </pattern> |
| 6 </defs> | 6 </defs> |
| 7 <rect x="0" y="0" width="100" height="100" fill="red" /> | 7 <rect x="0" y="0" width="100" height="100" fill="red" /> |
| 8 <rect x="0" y="0" width="100" height="100" fill="url(#green)" /> | 8 <rect x="0" y="0" width="100" height="100" fill="url(#green)" /> |
| 9 </svg> | 9 </svg> |
| OLD | NEW |