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

Unified Diff: LayoutTests/fast/events/touch/gesture/touch-gesture-fling-with-page-scale.html

Issue 901323004: Pass source device to window.eventSender.gestureFlingStart. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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
« no previous file with comments | « LayoutTests/fast/events/touch/gesture/pad-gesture-fling.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/events/touch/gesture/touch-gesture-fling-with-page-scale.html
diff --git a/LayoutTests/fast/events/touch/gesture/touch-gesture-fling-with-page-scale.html b/LayoutTests/fast/events/touch/gesture/touch-gesture-fling-with-page-scale.html
index 7ccbbd6b0d49d2bbf40a2245711d153dd9cd3c7b..a0187ca0abb8e637460baa67873be61b0d3f5214 100644
--- a/LayoutTests/fast/events/touch/gesture/touch-gesture-fling-with-page-scale.html
+++ b/LayoutTests/fast/events/touch/gesture/touch-gesture-fling-with-page-scale.html
@@ -62,7 +62,8 @@
containerPinchCoordsX,
containerPinchCoordsY + container.offsetHeight*scale,
0,
- 10000);
+ 10000,
+ "touchpad");
Rick Byers 2015/02/07 11:22:47 this test is in the touchscreen directly - perhaps
tdresser 2015/02/09 13:56:51 See the test description: "To test manually, pinc
}
var horizontalFlingOverContainer = function() {
@@ -74,7 +75,8 @@
containerPinchCoordsX + container.offsetWidth*scale,
containerPinchCoordsY,
10000,
- 0);
+ 0,
+ "touchpad");
}
var verticalFlingNotOverContainer = function() {
@@ -86,7 +88,8 @@
containerPinchCoordsX + container.offsetWidth*scale,
0,
0,
- -10000);
+ -10000,
+ "touchpad");
}
var horizontalFlingNotOverContainer = function() {
@@ -98,7 +101,8 @@
0,
containerPinchCoordsY + container.offsetHeight*scale,
-10000,
- 0);
+ 0,
+ "touchpad");
}
var scrollHandler = function() {
« no previous file with comments | « LayoutTests/fast/events/touch/gesture/pad-gesture-fling.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698