| OLD | NEW |
| (Empty) | |
| 1 <!DOCTYPE HTML> |
| 2 <svg width="400" height="400"> |
| 3 <defs> |
| 4 <rect id="clip1Shape" x="0" y="0" width="50" height="100"/> |
| 5 <rect id="clip2Shape" x="50" y="0" width="50" height="100"/> |
| 6 <!-- Should not contribute to the clip. --> |
| 7 <rect id="clip3Shape" style="display:none" x="100" y="0" width="50" heig
ht="100"/> |
| 8 <clipPath id="clipUnion"> |
| 9 <use xlink:href="#clip1Shape"/> |
| 10 <use xlink:href="#clip2Shape"/> |
| 11 <use xlink:href="#clip3Shape"/> |
| 12 <!-- Should not contribute to the clip. --> |
| 13 <rect style="display:none" x="150" y="0" width="50" height="100"/> |
| 14 </clipPath> |
| 15 </defs> |
| 16 <rect width="300" height="100" clip-path="url(#clipUnion)" fill="green"/> |
| 17 </svg> |
| OLD | NEW |