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

Side by Side Diff: third_party/WebKit/Source/web/tests/data/root-scroller-child.html

Issue 1970763002: Fixed up root scroller API to be more webby (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Sigh...fix test expectation again, fix crash when there's no renderer Created 4 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> 4 <style>
5 ::-webkit-scrollbar { 5 ::-webkit-scrollbar {
6 width: 0px; 6 width: 0px;
7 height: 0px; 7 height: 0px;
8 } 8 }
9 9
10 body, html { 10 body, html {
11 width: 100%; 11 width: 100%;
12 height: 100%; 12 height: 100%;
13 } 13 }
14 14
15 body { 15 body {
16 margin: 0px; 16 margin: 0px;
17 } 17 }
18 18
19 #container { 19 #container {
20 width: 200px; 20 width: 100%;
21 height: 200px; 21 height: 100%;
22 overflow: auto; 22 overflow: auto;
23 } 23 }
24 24
25 #spacer { 25 #spacer {
26 width: 400px; 26 width: 400px;
27 height: 400px; 27 height: 400px;
28 } 28 }
29 </style> 29 </style>
30 </head> 30 </head>
31 31
32 <body> 32 <body>
33 <div id="container"> 33 <div id="container">
34 <div id="spacer"></div> 34 <div id="spacer"></div>
35 </div> 35 </div>
36 </body> 36 </body>
37 </html> 37 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698