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

Unified Diff: Source/web/tests/data/overflow-hidden.html

Issue 33413002: scroll: Tell the platform layer whether it can be scrolled by the user. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: tot-merge Created 7 years, 2 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
« no previous file with comments | « Source/web/tests/ScrollingCoordinatorChromiumTest.cpp ('k') | public/platform/WebLayer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/tests/data/overflow-hidden.html
diff --git a/Source/web/tests/data/overflow-scrolling.html b/Source/web/tests/data/overflow-hidden.html
similarity index 51%
copy from Source/web/tests/data/overflow-scrolling.html
copy to Source/web/tests/data/overflow-hidden.html
index 93cf9e5c3dd18b22b08de41ae5ffc800631da53f..78fed8d7b523d1adbb9f256e892317b493a72098 100644
--- a/Source/web/tests/data/overflow-scrolling.html
+++ b/Source/web/tests/data/overflow-hidden.html
@@ -2,10 +2,15 @@
<html>
<head>
<style type="text/css">
- #scrollable {
+ #unscrollable-y {
width: 10px;
height: 10px;
- overflow: scroll;
+ overflow-y: hidden;
+ }
+ #unscrollable-x {
+ width: 10px;
+ height: 10px;
+ overflow-x: hidden;
}
.content {
width: 100px;
@@ -15,7 +20,10 @@
</head>
<body>
- <div id="scrollable">
+ <div id="unscrollable-y">
+ <div class="content"></div>
+ </div>
+ <div id="unscrollable-x">
<div class="content"></div>
</div>
</body>
« no previous file with comments | « Source/web/tests/ScrollingCoordinatorChromiumTest.cpp ('k') | public/platform/WebLayer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698