Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / sub-pixel / sub-pixel-root-layer.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 #list {
6     width: 639px;
7 }
8 .item {
9   width: 256px;
10   margin: 8px auto;
11 }
12 .icon {
13   display: block;
14   width: 256px;
15   height: 256px;
16   border: 1px solid red;
17   background-color: red;
18 }
19 #layer {
20   position: relative;
21   top: -258px;
22   width: 256px;
23   height: 256px;
24   background: green;
25   border: 1px solid black;
26 }
27 </style>
28 </head>
29 <body>
30 <div id="list">
31     <div class="item"><img class="icon" style="transform: scaleX(-1);">
32       <div id="layer"></div>
33     </div>
34 </div>
35 </body>