Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / compositing / layer-creation / backing-requirement-changes-expected.html
blobce846f06c974e90a52a557fd894f6ad7cc8f3e65
1 <html>
2 <head>
3 <style>
4 #outer {
5 position: absolute;
6 top: 0px;
7 left: 0px;
8 height: 300px;
9 width: 300px;
10 z-index: 1;
11 overflow: auto;
12 background-color: green;
15 #inner {
16 transform: translateZ(0);
17 background-color: blue;
20 #overlap {
21 width: 500px;
22 height: 500px;
23 background-color: yellow;
24 transform: translateZ(0);
26 </style>
27 </head>
29 <body>
30 <div id="outer">
31 <div id="inner"></div>
32 </div>
33 <div id="overlap"></div>
34 </body>
35 </html>