Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(35)

Side by Side Diff: LayoutTests/fast/multicol/newmulticol/compare-with-old-impl/paged-y-to-paged-x-expected.html

Issue 364233005: [New Multicolumn] Support for paged overflow. (By mstensho). (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Run fast/pagination in virtual/regionbasedmulticol. Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <title>Changing from paged-y to paged-x</title> 4 <title>Changing from paged-y to paged-x</title>
5 <script> 5 <script>
6 function test() { 6 function test() {
7 document.body.offsetTop; // trigger layout 7 document.body.offsetTop; // trigger layout
8 document.body.style.overflow = 'paged-x'; 8 document.body.style.overflow = 'paged-x';
9 document.body.style.overflow = '-webkit-paged-x'; 9 document.body.style.overflow = '-webkit-paged-x';
10 } 10 }
11 </script> 11 </script>
12 </head> 12 </head>
13 <body style="overflow:-webkit-paged-y; overflow:paged-y;" onload="test()"> 13 <body style="overflow:-webkit-paged-y; overflow:paged-y;" onload="test()">
14 <div style="height:150vh;"> 14 <div style="height:150vh;">
15 There should be a horizontal scrollbar on this page. 15 There should be a horizontal scrollbar on this page.
16 </div> 16 </div>
17 </body> 17 </body>
18 </html> 18 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698