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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: Source/web/tests/data/iframe-scrolling.html
diff --git a/Source/web/tests/data/iframe-scrolling.html b/Source/web/tests/data/iframe-scrolling.html
index ab30f131f9b1b03ee9cb06d51c7c30791ebb38b3..bfb3393258bde9b00cfc4219f2419dd403a1a052 100644
--- a/Source/web/tests/data/iframe-scrolling.html
+++ b/Source/web/tests/data/iframe-scrolling.html
@@ -2,11 +2,16 @@
<html>
<head>
<style type="text/css">
+ body {
+ height: 2000px;
+ }
#scrollable {
- width: 50px;
- height: 50px;
+ margin-top: 50px;
+ margin-left: 50px;
+ width: 200px;
+ height: 200px;
}
- </style>
+ </style>
</head>
<body>
<iframe src="iframe-scrolling-inner.html" id="scrollable"/>

Powered by Google App Engine
This is Rietveld 408576698