Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / compositing / geometry / flipped-blocks-inline-mapping.html
1 <style>
2     .container {
3       -webkit-writing-mode: horizontal-bt;
4       height: 100px;
5       border: 1px solid black;
6     }
7     div {
8       height: 20px;
9     }
10     .box {
11       width: 20px;
12       height: 20px;
13       background-color: blue;
14     }
15     
16     .transformed {
17       transform: translateZ(0);
18     }
19     span {
20       opacity: 0.8;
21     }
22     
23 </style>
24 <div class="container">
25     <span>
26         <div class="transformed box"></div>
27         <div style="display: inline-block">This test should not assert in debug builds</div>
28     </span>
29 </div>
30 <script>
31 if (window.testRunner)
32   testRunner.dumpAsText();
33 </script>