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

Side by Side Diff: LayoutTests/fast/pagination/html-make-unpaginated.html

Issue 157553002: Remove the Pagination struct, clean up viewport scroll policy propagation. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase master Created 6 years, 10 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
(Empty)
1 <!DOCTYPE html>
2 <html style="overflow:-webkit-paged-x; overflow:paged-x;">
3 <head>
4 <title>Dynamically remove paged overflow on the root element</title>
5 <script>
6 function test() {
7 document.body.offsetTop; // trigger layout
8 document.documentElement.style.overflow = 'auto';
9 }
10 </script>
11 </head>
12 <body onload="test()">
13 <div style="height:150vh;">
14 The word 'PASS' should be seen below.
15 <div style="-webkit-column-break-before:always;">PASS</div>
16 </div>
17 </body>
18 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698