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

Side by Side Diff: Source/web/tests/data/iframe-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: 50px; 9 margin-top: 50px;
7 height: 50px; 10 margin-left: 50px;
11 width: 200px;
12 height: 200px;
8 } 13 }
9 </style> 14 </style>
10 </head> 15 </head>
11 <body> 16 <body>
12 <iframe src="iframe-scrolling-inner.html" id="scrollable"/> 17 <iframe src="iframe-scrolling-inner.html" id="scrollable"/>
13 </body> 18 </body>
14 </html> 19 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698