Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / compositing / squashing / squashing-into-ancestor-painted-layer-expected.html
blob5180d111949af1befbc56a997821765e0bc1426a
1 <!DOCTYPE HTML>
2 <style>
3 body {
4 transform: translateZ(0);
6 #overlapper {
7 width: 400px;
8 height: 400px;
9 left: 200px;
10 background: gray;
11 position: absolute;
12 transform: translateZ(0);
15 #container {
16 -webkit-perspective: 1400px;
17 position: absolute;
18 width: 180px;
19 height: 180px;
20 background: papayawhip;
23 #composited {
24 width: 100px;
25 height: 100px;
26 left: 200px;
27 background: green;
28 position: absolute;
29 transform: translateZ(10px);
30 visibility: hidden;
33 #squashed {
34 position: absolute;
35 width: 50px;
36 height: 50px;
37 background: blue;
39 </style>
40 <div id="overlapper"></div>
41 <div id="container">
42 <div id="composited"></div>
43 </div>
44 <div id="squashed"></div>
45 THIS TEST PASSES IF IT DOES NOT CRASH