| OLD | NEW |
| 1 <svg xmlns="http://www.w3.org/2000/svg"> | 1 <svg xmlns="http://www.w3.org/2000/svg"> |
| 2 <defs> | 2 <defs> |
| 3 <clipPath id="clip"> | 3 <clipPath id="clip"> |
| 4 <rect width="100" height="100" opacity=".4"/> | 4 <rect width="100" height="100" opacity=".4"/> |
| 5 <rect/> <!-- trigger render-to-image-buffer mode --> | 5 <rect/> <!-- trigger render-to-image-buffer mode --> |
| 6 </clipPath> | 6 </clipPath> |
| 7 </defs> | 7 </defs> |
| 8 | 8 |
| 9 <!-- Should result in a 100x100 green square --> | 9 <!-- Should result in a 100x100 green square --> |
| 10 <rect width="200" height="200" fill="red" clip-path="url(#clip)"/> | 10 <rect width="200" height="200" fill="red" clip-path="url(#clip)"/> |
| 11 <rect width="100" height="100" fill="green"/> | 11 <rect width="100" height="100" fill="green"/> |
| 12 | 12 |
| 13 </svg> | 13 </svg> |
| OLD | NEW |