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

Unified Diff: LayoutTests/fast/events/touch/gesture/touch-gesture-scroll-div-past-extent-not-propagated-diagonally.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-div-past-extent-not-propagated-diagonally.html
diff --git a/LayoutTests/fast/events/touch/gesture/touch-gesture-scroll-div-propagated-diagonally.html b/LayoutTests/fast/events/touch/gesture/touch-gesture-scroll-div-past-extent-not-propagated-diagonally.html
similarity index 91%
rename from LayoutTests/fast/events/touch/gesture/touch-gesture-scroll-div-propagated-diagonally.html
rename to LayoutTests/fast/events/touch/gesture/touch-gesture-scroll-div-past-extent-not-propagated-diagonally.html
index ce8b3fd678d420a90d6c6c883aa15e99353c5be7..8c4e098cd6ab6258f4333fa3a6e9472c7456ce39 100644
--- a/LayoutTests/fast/events/touch/gesture/touch-gesture-scroll-div-propagated-diagonally.html
+++ b/LayoutTests/fast/events/touch/gesture/touch-gesture-scroll-div-past-extent-not-propagated-diagonally.html
@@ -49,7 +49,7 @@ if (window.testRunner)
function runTest()
{
if (window.eventSender) {
- description('This tests that a gesture scroll is propagated from an ' +
+ description('This tests that a gesture scroll isn\'t propagated from an ' +
'inner div to an outer div when the inner div has ' +
'remaining scroll offset on one axis, but not on the other.');
if (checkTestDependencies()) {
@@ -57,7 +57,7 @@ function runTest()
eventSender.gestureScrollUpdate(-15, -20);
eventSender.gestureScrollEnd(0, 0);
shouldBe("horizontal.scrollLeft", "15");
- shouldBe("vertical.scrollTop", "20");
+ shouldBe("vertical.scrollTop", "0");
if (window.testRunner)
testRunner.notifyDone();
} else {

Powered by Google App Engine
This is Rietveld 408576698