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