Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / body-propagation / overflow / 001.html
1 <!DOCTYPE html>
2 <html xmlns="http://www.w3.org/1999/xhtml">
3  <head>
4   <title>overflow on body should propagate to the viewport</title>
5   <style>
6    html { overflow:visible; }
7    body { overflow:scroll; width:10em; height:10em; border:thin solid; color:navy; }
8    .filler { color:gray; }
9   </style>
10  </head>
11  <script>
12   if (window.internals) {
13       window.internals.settings.setForceCompositingMode(true);
14   }
15  </script>
16  <body>
17   <p>There should be scrollbars for the viewport -- not for this box.</p>
18   <p class="filler">This is filler text.</p>
19   <p class="filler">This is filler text.</p>
20   <p class="filler">This is filler text.</p>
21   <p class="filler">This is filler text.</p>
22  </body>
23 </html>