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

Unified Diff: third_party/WebKit/LayoutTests/fast/events/panScroll-in-iframe.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-in-iframe.html
diff --git a/third_party/WebKit/LayoutTests/fast/events/panScroll-in-iframe.html b/third_party/WebKit/LayoutTests/fast/events/panScroll-in-iframe.html
deleted file mode 100644
index 0287ffefd25d240ca1e1faffc423fc582f5d3eaa..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/events/panScroll-in-iframe.html
+++ /dev/null
@@ -1,31 +0,0 @@
-<html>
-<head>
-<script src="../../resources/js-test.js"></script>
-<script src="./resources/panScroll.js"></script>
-<script>
-function start() {
-
- description('Check pan scroll in iframe');
- var iframe = $('iframe');
- var offsetLeft = iframe.offsetLeft;
- var offsetTop = iframe.offsetTop;
-
- testPanScroll({
- 'clickOrDrag': 'click',
- 'endX': offsetLeft + 5,
- 'endY': offsetTop + 50,
- 'scrollable': iframe.contentDocument.body,
- 'scrolledObject': iframe.contentWindow,
- 'startX': offsetLeft + 5,
- 'startY': offsetTop + 5,
- });
-}
-</script>
-</head>
-<body onload="start()">
-<div id="container">
-<p id="description"></p>
-<iframe id="iframe" width="640" height="100"></iframe>
-</div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698