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

Unified Diff: LayoutTests/fast/events/touch/gesture/touch-gesture-scroll-listbox.html

Issue 1320543006: Remove touch scroll chaining from main thread scrolling. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@gclient
Patch Set: Created 5 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: LayoutTests/fast/events/touch/gesture/touch-gesture-scroll-listbox.html
diff --git a/LayoutTests/fast/events/touch/gesture/touch-gesture-scroll-listbox.html b/LayoutTests/fast/events/touch/gesture/touch-gesture-scroll-listbox.html
index 9847c710e61c14f7c9d048e972cacd16d480ed2a..9443bf7eb3fa220de1977f69b75ca89fc5805355 100644
--- a/LayoutTests/fast/events/touch/gesture/touch-gesture-scroll-listbox.html
+++ b/LayoutTests/fast/events/touch/gesture/touch-gesture-scroll-listbox.html
@@ -116,9 +116,9 @@
eventSender.gestureScrollUpdate(0, -50);
eventSender.gestureScrollEnd(0, 0);
- debug("Gesture scrolling list past the end should scroll container div");
+ debug("Gesture scrolling list past the end shouldn't scroll container div");
Rick Byers 2015/09/03 19:55:10 For cases like this, do we / should we have tests
shouldBe('box.scrollTop', 'fullyScrolled');
- shouldBe('container.scrollTop', '50');
+ shouldBe('container.scrollTop', '0');
}
function testHorizontalScroll()

Powered by Google App Engine
This is Rietveld 408576698