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

Side by Side Diff: LayoutTests/fast/multicol/newmulticol/compare-with-old-impl/div-make-paginated.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 <script>
5 if (window.internals)
6 internals.settings.setRegionBasedColumnsEnabled(true);
7 </script>
4 <title>Dynamically set paged overflow on a DIV element</title> 8 <title>Dynamically set paged overflow on a DIV element</title>
5 <script> 9 <script>
6 function test() { 10 function test() {
7 document.body.offsetTop; // trigger layout 11 document.body.offsetTop; // trigger layout
8 document.getElementById('elm').style.overflow = '-webkit-paged-x '; 12 document.getElementById('elm').style.overflow = '-webkit-paged-x ';
9 document.getElementById('elm').style.overflow = 'paged-x'; 13 document.getElementById('elm').style.overflow = 'paged-x';
10 } 14 }
11 </script> 15 </script>
12 </head> 16 </head>
13 <body onload="test()"> 17 <body onload="test()">
14 <div id="elm" style="width:30em; height:10em;"> 18 <div id="elm" style="width:30em; height:10em;">
15 There should be no text below. 19 There should be no text below.
16 <div style="margin-top:10em;">FAIL</div> 20 <div style="margin-top:10em;">FAIL</div>
17 </div> 21 </div>
18 </body> 22 </body>
19 </html> 23 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698