Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / compositing / squashing / squash-clipped-expected.html
blob2645c7a2d88736b04effea9285b3614894ba6a4f
1 <!DOCTYPE html>
2 <head>
3 <style>
4 .composited {
5 transform: translatez(0);
8 .box {
9 width: 100px;
10 height: 100px;
13 .behind {
14 position: absolute;
15 z-index: 1;
16 top: 100px;
17 left: 100px;
18 background-color: blue;
21 .middle {
22 position: absolute;
23 z-index: 1;
24 top: 180px;
25 left: 180px;
26 background-color: lime;
29 .middle2 {
30 position: absolute;
31 z-index: 1;
32 top: 260px;
33 left: 260px;
34 background-color: magenta;
37 .top {
38 position: absolute;
39 z-index: 1;
40 top: 340px;
41 left: 340px;
42 background-color: cyan;
45 .clipper {
46 transform: translatez(0);
47 width: 400px;
48 height: 400px;
49 background-color: gray;
50 overflow: hidden;
53 div:hover {
54 background-color: green;
57 </style>
58 </head>
59 <body>
60 <div class="clipper">
61 <div class="composited box behind"></div>
62 <div class="box middle"></div>
63 <div class="box middle2"></div>
64 <div class="box top"></div>
65 </div>
66 </body>