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

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

Issue 735003003: Remove all tests in fast/multicol/newmulticol/compare-with-old-impl. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 1 month 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
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script>
5 if (window.internals)
6 internals.settings.setRegionBasedColumnsEnabled(true);
7 </script>
8 <title>Changing from paged-x to paged-y</title>
9 <script>
10 function test() {
11 document.body.offsetTop; // trigger layout
12 document.body.style.overflow = 'paged-y';
13 document.body.style.overflow = '-webkit-paged-y';
14 }
15 </script>
16 </head>
17 <body style="overflow:-webkit-paged-x; overflow:paged-x;" onload="test()">
18 <div style="height:150vh;">
19 There should be a vertical scrollbar on this page.
20 </div>
21 </body>
22 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698