Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / compositing / overflow / get-transform-from-non-box-container.html
1 <html>
2     <head>
3         <style>
4             .container {
5                 display: inline; 
6                 -webkit-perspective: 10px; 
7             }
8             .intermediate {
9                 -webkit-column-width: 100px;
10             }
11         </style>
12     </head>
13     <body>
14         <div class="container" style="position: relative">
15             <div class="intermediate" style="position: absolute">
16                 PASS
17             </div>
18         </div>
19         <script>
20             if (window.testRunner)
21                 testRunner.dumpAsText();
22         </script>
23     </body>
24 </html>