Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <style> | |
| 3 #target { | |
| 4 width: 100px; | |
| 5 height: 100px; | |
| 6 background-color: green; | |
| 7 -webkit-clip-path: url(notexisting.svg#c); | |
| 8 clip-path: url(notexisting.svg#c); | |
| 9 } | |
| 10 </style> | |
| 11 <div style="background-color: red; width: 100px"> | |
| 12 <div id="target"></div> | |
| 13 </div> | |
| 14 <svg> | |
| 15 <clipPath id="c" clipPathUnits="objectBoundingBox"> | |
| 16 <circle cx="0.5" cy="0.5" r="0.5"/> | |
| 17 </clipPath> | |
| 18 </svg> | |
| OLD | NEW |