| 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="clip1" clipPathUnits="objectBoundingBox"> | 3 <clipPath id="clip1" clipPathUnits="objectBoundingBox"> |
| 4 <circle cx="0" cy="0" r="0.5" /> | 4 <circle cx="0" cy="0" r="0.5" /> |
| 5 <circle cx="0" cy="1" r="0.5" /> | 5 <circle cx="0" cy="1" r="0.5" /> |
| 6 </clipPath> | 6 </clipPath> |
| 7 | 7 |
| 8 <clipPath id="clip2" clipPathUnits="objectBoundingBox"> | 8 <clipPath id="clip2" clipPathUnits="objectBoundingBox"> |
| 9 <circle cx="1" cy="0" r="0.5" /> | 9 <circle cx="1" cy="0" r="0.5" /> |
| 10 <circle cx="1" cy="1" r="0.5" /> | 10 <circle cx="1" cy="1" r="0.5" /> |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 <g mask="url(#mask1a)"> | 40 <g mask="url(#mask1a)"> |
| 41 <circle cx="50" cy="50" r="50" fill="black" mask="url(#mask1b)"/> | 41 <circle cx="50" cy="50" r="50" fill="black" mask="url(#mask1b)"/> |
| 42 </g> | 42 </g> |
| 43 | 43 |
| 44 <!-- The mask on the <g> causes nothing to be renderer with Opera, clearly a bug
--> | 44 <!-- The mask on the <g> causes nothing to be renderer with Opera, clearly a bug
--> |
| 45 <g mask="url(#mask3)"> | 45 <g mask="url(#mask3)"> |
| 46 <circle cx="150" cy="150" r="50" fill="black" mask="url(#mask2)"/> | 46 <circle cx="150" cy="150" r="50" fill="black" mask="url(#mask2)"/> |
| 47 </g> | 47 </g> |
| 48 | 48 |
| 49 </svg> | 49 </svg> |
| OLD | NEW |