Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / pagination / paged-x-to-paged-y.html
blob27881aba9128c999890ce9a583ab1e2b8b8018e5
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>Changing from paged-x to paged-y</title>
5 <script>
6 function test() {
7 document.body.offsetTop; // trigger layout
8 document.body.style.overflow = 'paged-y';
9 document.body.style.overflow = '-webkit-paged-y';
11 </script>
12 </head>
13 <body style="overflow:-webkit-paged-x; overflow:paged-x;" onload="test()">
14 <div style="height:150vh;">
15 There should be a vertical scrollbar on this page.
16 </div>
17 </body>
18 </html>