| OLD | NEW |
| (Empty) |
| 1 <!DOCTYPE html> | |
| 2 <style> | |
| 3 .spacer { | |
| 4 position: relative; | |
| 5 width: 300px; | |
| 6 height: 300px; | |
| 7 } | |
| 8 | |
| 9 .clipping-container { | |
| 10 position: absolute; | |
| 11 height: 300px; | |
| 12 transform: translateZ(0); | |
| 13 width: 100%; | |
| 14 clip: rect(100px, 200px, 200px, 100px); | |
| 15 } | |
| 16 | |
| 17 .clipped-composited-child { | |
| 18 width: 250px; | |
| 19 height: 250px; | |
| 20 background-color: yellow; | |
| 21 border: 1px solid black; | |
| 22 transform: translateZ(0); | |
| 23 } | |
| 24 </style> | |
| 25 <div class="spacer"> | |
| 26 <div class="clipping-container"> | |
| 27 <div class="clipped-composited-child"></div> | |
| 28 </div> | |
| 29 </div> | |
| 30 <div class="spacer"> | |
| 31 <div class="clipping-container"> | |
| 32 <div class="clipped-composited-child"></div> | |
| 33 </div> | |
| 34 </div> | |
| OLD | NEW |