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

Side by Side Diff: Source/web/tests/data/overflow-scrolling.html

Issue 893683003: Implement top controls show/hide functionality for main thread scrolling (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix minor macro issue Created 5 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
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 }
5 #scrollable { 8 #scrollable {
6 width: 10px; 9 margin-top: 50px;
7 height: 10px; 10 margin-left: 50px;
11 width: 200px;
12 height: 200px;
8 overflow: scroll; 13 overflow: scroll;
9 } 14 }
10 .content { 15 .content {
11 width: 100px; 16 width: 1000px;
12 height: 1000px; 17 height: 1000px;
13 } 18 }
14 </style> 19 </style>
15 </head> 20 </head>
16 21
17 <body> 22 <body>
18 <div id="scrollable"> 23 <div id="scrollable">
19 <div class="content"></div> 24 <div class="content"></div>
20 </div> 25 </div>
21 </body> 26 </body>
22 </html> 27 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698