Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / compositing / squashing / transform-squashed-owner-expected.html
blob203e0af7fcb1e320081e9cc5587ba3c27c362ae6
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 .set {
6 position: absolute;
7 top: 8px;
9 .box {
10 height: 100px;
11 width: 100px;
12 background-color: lightblue;
14 .squashed {
15 height: 40px;
16 width: 40px;
17 background-color: lightgreen;
18 position: absolute;
19 left: 16px;
21 .composited {
22 transform: translateZ(0px);
24 .rotated { rotate(10deg);
26 </style>
27 </head>
28 <body>
29 <!-- This div will be the "owner" of the squashing layer -->
30 <div class="composited rotated box"></div>
31 <div id="target" class="squashed" style="top: 4px"></div>
32 <div class="squashed" style="top: 54px"></div>
33 </body>
34 </html>