Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / compositing / background-color / background-color-container.html
1 <html>
2     <head>
3         <style type="text/css">
4             .green {
5                 width: 100px;
6                 height: 100px;
7                 background-color: green;
8                 display: block;
9             }
10             .blue {
11                 width: 50px;
12                 height: 50px;
13                 background-color: blue;
14                 display: block;
15             }
16
17             .composited {
18                 transform: translateZ(0);
19             }
20         </style>
21     </head>
22     <body>
23         <div class="green composited">
24             <div class="blue composited">
25             </div>
26         </div>
27     </body>
28 </html>