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

Side by Side Diff: Source/web/tests/data/overscroll/div-overscroll.html

Issue 1056983004: OverscrollGlow for mainThread-{BLINK CHANGES} (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebased to latest Created 5 years, 6 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 <style type="text/css"> 4 <style type="text/css">
5 body {
6 height: 2000px;
7 }
8 #scrollable { 5 #scrollable {
9 margin-top: 50px; 6 width: 300px;
10 margin-left: 50px; 7 height: 300px;
11 width: 200px;
12 height: 200px;
13 overflow: scroll; 8 overflow: scroll;
14 } 9 }
15 .content { 10 .content {
16 width: 1000px; 11 width: 500px;
17 height: 1000px; 12 height: 500px;
18 } 13 }
19 </style> 14 </style>
20 </head> 15 </head>
21 16
22 <body> 17 <body>
23 <div id="scrollable"> 18 <div id="scrollable">
24 <div class="content"></div> 19 <div class="content"></div>
25 </div> 20 </div>
26 </body> 21 </body>
27 </html> 22 </html>
OLDNEW
« no previous file with comments | « Source/web/tests/WebFrameTest.cpp ('k') | Source/web/tests/data/overscroll/iframe-overscroll.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698