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

Unified Diff: LayoutTests/fast/events/touch/gesture/pad-gesture-fling.js

Issue 219243010: Update pad-gesture-fling test to accommodate short-circuited fling (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove max expected events Created 6 years, 9 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 | « no previous file | LayoutTests/fast/events/touch/gesture/pad-gesture-fling-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/events/touch/gesture/pad-gesture-fling.js
diff --git a/LayoutTests/fast/events/touch/gesture/pad-gesture-fling.js b/LayoutTests/fast/events/touch/gesture/pad-gesture-fling.js
index 7057c45cae334fdcdeea4d4371c2ff47fdfa6a2b..20837902e178898361d76ff6be085426171879df 100644
--- a/LayoutTests/fast/events/touch/gesture/pad-gesture-fling.js
+++ b/LayoutTests/fast/events/touch/gesture/pad-gesture-fling.js
@@ -4,9 +4,9 @@ var actualWheelEventsOccurred = 0;
var cumulativeScrollX = 0;
var cumulativeScrollY = 0;
-var minimumWheelEventsExpected = 40;
-var minimumScrollXExpected = "200";
-var minimumScrollYExpected = "200";
+var minimumWheelEventsExpected = "2";
+var minimumScrollXExpected = 300;
+var minimumScrollYExpected = 300;
var positionX = 10;
var positionY = 11;
@@ -25,14 +25,17 @@ function recordWheelEvent(event)
cumulativeScrollX += event.wheelDeltaX;
cumulativeScrollY += event.wheelDeltaY;
- if (actualWheelEventsOccurred == minimumWheelEventsExpected) {
- shouldBeGreaterThanOrEqual('cumulativeScrollX', minimumScrollXExpected);
- shouldBeGreaterThanOrEqual('cumulativeScrollY', minimumScrollYExpected);
+ if (cumulativeScrollX >= minimumScrollXExpected
+ && cumulativeScrollY >= minimumScrollYExpected) {
+ shouldBeGreaterThanOrEqual('actualWheelEventsOccurred', minimumWheelEventsExpected);
+ shouldBeGreaterThanOrEqual('cumulativeScrollX', minimumScrollXExpected.toString());
+ shouldBeGreaterThanOrEqual('cumulativeScrollY', minimumScrollYExpected.toString());
isSuccessfullyParsed();
if (window.testRunner)
testRunner.notifyDone();
}
+ event.preventDefault();
}
document.addEventListener("mousewheel", recordWheelEvent);
« no previous file with comments | « no previous file | LayoutTests/fast/events/touch/gesture/pad-gesture-fling-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698