Upstream version 11.40.277.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / compositing / overflow / overflow-hidden-with-touch.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4   <style>
5     .scroller {
6       width: 300px;
7       height: 300px;
8       overflow: hidden;
9       -webkit-overflow-scrolling: touch;
10     }
11
12     .column {
13       width: 1000px;
14       height: 1000px;
15       background: silver;
16     }
17   </style>
18   <script>
19     if (window.testRunner)
20       testRunner.dumpAsText();
21
22     window.addEventListener('load', function() {
23       if (window.testRunner)
24         document.getElementById('layers').innerHTML = window.internals.layerTreeAsText(document);
25     }, true);
26   </script>
27 </head>
28
29 <body>
30   <div class="scroller">
31     <div class="column">
32     </div>
33   </div>
34   <pre id="layers">Layer tree goes here in DRT</pre>
35 </body>
36 </html>