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

Unified Diff: third_party/WebKit/LayoutTests/fast/events/panScroll-nested-divs.html

Issue 2289213002: Implement Middle Click Autoscroll on all platforms not just Windows (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge branch 'master' of https://chromium.googlesource.com/chromium/src into panscroll Created 4 years, 3 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: third_party/WebKit/LayoutTests/fast/events/panScroll-nested-divs.html
diff --git a/third_party/WebKit/LayoutTests/fast/events/panScroll-nested-divs.html b/third_party/WebKit/LayoutTests/fast/events/panScroll-nested-divs.html
deleted file mode 100644
index ee0cd16c0026ae967e3a4bdec10db15451a6b68b..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/events/panScroll-nested-divs.html
+++ /dev/null
@@ -1,46 +0,0 @@
-<html>
-<head>
-<style type="text/css">
-#scrollable {
- width:500px;
- height:300px;
- overflow:auto;
- border:2px solid red;
- padding:10px";
-}
-</style>
-<script src="../../resources/js-test.js"></script>
-<script src="./resources/panScroll.js"></script>
-<script>
-function start()
-{
- description('Check pan scroll in nested divs');
- testPanScroll({
- 'clickOrDrag': 'click',
- 'scrollable': $('scrollable'),
- });
-}
-</script>
-</head>
-<body onload="start()">
-<div id="container">
-<p id="description"></p>
-Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=28023">bug 28023</a> This tests that pan scrolling
-propogates correctly up the DOM tree. On success, our scroll offset should be non-zero.
-<div id="scrollable">
- <div style="height:200px; position:relative;">
- <div style="height:150px; border:1px blue solid; overflow:auto;">
- Panscrolling starting in the blue box should scroll the outer div.
- </div>
- Panscrolling outside the blue boxes should scroll the outer div.
- </div>
- <div style="height:200px; position:relative;">
- <div style="height:150px; border:1px blue solid; overflow:auto;">
- Panscrolling starting in the blue box should scroll the outer div.
- </div>
- </div>
-</div>
-</div>
-<div id="console"></div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698