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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: Source/web/tests/data/overflow-scrolling.html
diff --git a/Source/web/tests/data/overflow-scrolling.html b/Source/web/tests/data/overflow-scrolling.html
index 93cf9e5c3dd18b22b08de41ae5ffc800631da53f..6710006ff5fbe4878749ee8c43aefdd1e164c206 100644
--- a/Source/web/tests/data/overflow-scrolling.html
+++ b/Source/web/tests/data/overflow-scrolling.html
@@ -2,13 +2,18 @@
<html>
<head>
<style type="text/css">
+ body {
+ height: 2000px;
+ }
#scrollable {
- width: 10px;
- height: 10px;
+ margin-top: 50px;
+ margin-left: 50px;
+ width: 200px;
+ height: 200px;
overflow: scroll;
}
.content {
- width: 100px;
+ width: 1000px;
height: 1000px;
}
</style>

Powered by Google App Engine
This is Rietveld 408576698