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

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

Issue 2934853002: [Refactor] Use correct viewport style in Android tests (Closed)
Patch Set: bokan comments addressed Created 3 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 <meta name="viewport" content="width=device-width, minimum-scale=1">
4 <style type="text/css"> 5 <style type="text/css">
5 #scrollable { 6 #scrollable {
6 width: 300px; 7 width: 300px;
7 height: 300px; 8 height: 300px;
8 overflow: scroll; 9 overflow: scroll;
9 } 10 }
10 .content { 11 .content {
11 width: 500px; 12 width: 500px;
12 height: 500px; 13 height: 500px;
13 } 14 }
14 body { 15 body {
15 margin: 0px; 16 margin: 0px;
16 } 17 }
17 </style> 18 </style>
18 </head> 19 </head>
19 20
20 <body> 21 <body>
21 <div id="scrollable"> 22 <div id="scrollable">
22 <div class="content"></div> 23 <div class="content"></div>
23 </div> 24 </div>
24 </body> 25 </body>
25 </html> 26 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698