Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / paint / invalidation / spv2 / clipping-should-not-repaint-composited-descendants-expected.html
blobae88e81ded76e8d50d25b2f407c906415ad1540b
1 <!DOCTYPE html>
2 <style>
3 .spacer {
4 position: relative;
5 width: 300px;
6 height: 300px;
9 .clipping-container {
10 position: absolute;
11 height: 300px;
12 transform: translateZ(0);
13 width: 100%;
14 clip: rect(100px, 200px, 200px, 100px);
17 .clipped-composited-child {
18 width: 250px;
19 height: 250px;
20 background-color: yellow;
21 border: 1px solid black;
22 transform: translateZ(0);
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>