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

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

Issue 1056983004: OverscrollGlow for mainThread-{BLINK CHANGES} (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: added function for comparison Created 5 years, 7 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 { 5 body {
6 height: 2000px; 6 height: 2000px;
7 } 7 }
8 #scrollable { 8 #scrollable {
9 margin-top: 50px; 9 width: 800px;
10 margin-left: 50px; 10 height: 800px;
11 width: 200px; 11 border-style: solid;
12 height: 200px; 12 border-width: 5px;
13 overflow: scroll; 13 overflow: scroll;
14 } 14 }
15 .content { 15 .content {
16 width: 1000px; 16 width: 1000px;
17 height: 1000px; 17 height: 1000px;
18 } 18 }
19 </style> 19 </style>
20 </head> 20 </head>
21 21
22 <body> 22 <body>
23 <div id="scrollable"> 23 <div id="scrollable">
24 <div class="content"></div> 24 <div class="content"></div>
25 </div> 25 </div>
26 </body> 26 </body>
27 </html> 27 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698