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

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

Issue 2925883003: [Touch Adjustment] Pass primary_pointer_type to WebGestureEvent and disable adjustment for stylus (Closed)
Patch Set: jochen and dtapuska's comments: Add default value Created 3 years, 6 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/gesture/gesture-scrollbar-textarea.html
diff --git a/third_party/WebKit/LayoutTests/fast/events/touch/gesture/gesture-scrollbar-textarea.html b/third_party/WebKit/LayoutTests/fast/events/touch/gesture/gesture-scrollbar-textarea.html
index 12a171e2b7aedc6ce99c319c33ab9b1b308f2f89..fcb8cefc31fcc036c3050df9abdf923091e1a0d3 100644
--- a/third_party/WebKit/LayoutTests/fast/events/touch/gesture/gesture-scrollbar-textarea.html
+++ b/third_party/WebKit/LayoutTests/fast/events/touch/gesture/gesture-scrollbar-textarea.html
@@ -60,7 +60,7 @@ function verticalScrollTest() {
eventSender.gestureShowPress(
scrollbarX, scrollbarY, touchWidth, touchHeight);
eventSender.gestureScrollBegin(
- scrollbarX, scrollbarY, touchWidth, touchHeight);
+ scrollbarX, scrollbarY);
eventSender.gestureScrollUpdate(0, 20);
eventSender.gestureScrollEnd(0, 0);
shouldBeGreaterThanOrEqual('textArea.scrollTop', '1');

Powered by Google App Engine
This is Rietveld 408576698