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

Unified Diff: third_party/WebKit/LayoutTests/fast/events/touch/touch-user-gesture.html

Issue 2669663002: Move touch slop suppression to TouchEventManager (Closed)
Patch Set: slop regesion Created 3 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: third_party/WebKit/LayoutTests/fast/events/touch/touch-user-gesture.html
diff --git a/third_party/WebKit/LayoutTests/fast/events/touch/touch-user-gesture.html b/third_party/WebKit/LayoutTests/fast/events/touch/touch-user-gesture.html
index 4a2e751d81a50f21ef07a19c03e48fa7ea5bfbf9..c3909678e4bcccd61a38fa493e0e227480e39436 100644
--- a/third_party/WebKit/LayoutTests/fast/events/touch/touch-user-gesture.html
+++ b/third_party/WebKit/LayoutTests/fast/events/touch/touch-user-gesture.html
@@ -57,7 +57,7 @@ cancelEvent = false;
eventSender.addTouchPoint(targetX, targetY);
testPopupOnEventDuring('touchstart', false, function() { eventSender.touchStart(); });
eventSender.updateTouchPoint(0, targetX + 10, targetY);
-testPopupOnEventDuring('touchmove', false, function() { eventSender.touchMove("movedBeyondSlopRegion"); });
+testPopupOnEventDuring('touchmove', false, function() { eventSender.touchMove(); });
eventSender.notifyStartOfTouchScroll();
eventSender.releaseTouchPoint(0);
testPopupOnEventDuring('touchend', false, function() { eventSender.touchEnd(); });

Powered by Google App Engine
This is Rietveld 408576698