Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <style> | |
| 3 .error { | |
| 4 width: 100px; | |
| 5 height: 100px; | |
| 6 background-color: red; | |
| 7 position: absolute; | |
| 8 } | |
| 9 .test { | |
| 10 width: 200px; | |
| 11 height: 50px; | |
| 12 background-color: green; | |
| 13 -webkit-clip-path: url(#c); | |
| 14 } | |
| 15 </style> | |
| 16 <div class="error"></div> | |
| 17 <div class="test"></div> | |
| 18 <div class="test"></div> | |
| 19 <svg> | |
| 20 <defs> | |
| 21 <clipPath id="c" clipPathUnits="objectBoundingBox"> | |
| 22 <rect width="0.5" height="1"/> | |
| 23 </clipPath> | |
| 24 </defs> | |
| 25 </svg> | |
| OLD | NEW |