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

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

Issue 472463002: On some webpages, touch scrolling speed is too slow / fast (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed touch scrolling when browser-zoomed in/out. Added tests. Created 6 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
« no previous file with comments | « no previous file | LayoutTests/fast/events/touch/gesture/gesture-scroll-zoomed-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/gesture-scroll-zoomed.html
diff --git a/LayoutTests/fast/events/touch/gesture/gesture-scroll.html b/LayoutTests/fast/events/touch/gesture/gesture-scroll-zoomed.html
similarity index 87%
copy from LayoutTests/fast/events/touch/gesture/gesture-scroll.html
copy to LayoutTests/fast/events/touch/gesture/gesture-scroll-zoomed.html
index 0c388b94470d953346e2046e8beeaf327b105ba4..23ab651cbcdfd4d3b84a1155984bf5f86e014ea0 100644
--- a/LayoutTests/fast/events/touch/gesture/gesture-scroll.html
+++ b/LayoutTests/fast/events/touch/gesture/gesture-scroll-zoomed.html
@@ -69,8 +69,8 @@ td {
var movingdiv;
var expectedScrollsTotal = 2;
var scrollsOccurred = 0;
-var scrollAmountX = ['90', '90'];
-var scrollAmountY = ['0', '95'];
+var scrollAmountX = ['80', '80'];
+var scrollAmountY = ['0', '32'];
function checkScrollOffset()
{
@@ -95,8 +95,9 @@ function firstGestureScrollSequence()
{
debug("first gesture");
- eventSender.gestureScrollBegin(95, 12);
- eventSender.gestureScrollUpdate(-90, 0);
+ window.internals.setZoomFactor(0.5);
+ eventSender.gestureScrollBegin(45, 12);
+ eventSender.gestureScrollUpdate(-40, 0);
eventSender.gestureScrollEnd(0, 0);
// Wait for layout.
@@ -107,8 +108,9 @@ function secondGestureScrollSequence()
{
debug("second gesture");
- eventSender.gestureScrollBegin(12, 97);
- eventSender.gestureScrollUpdate(0, -95);
+ window.internals.setZoomFactor(1.25);
+ eventSender.gestureScrollBegin(12, 47);
+ eventSender.gestureScrollUpdate(0, -40);
eventSender.gestureScrollEnd(0, 0);
// Wait for layout.
@@ -131,7 +133,7 @@ function runTest()
var movingdiv = document.getElementById('movingbox');
if (window.eventSender) {
- description('This tests scroll gesture events. ' +
+ description('This tests scroll gesture events with browser zoom. ' +
'Square is (mostly) green on pass');
if (eventSender.clearTouchPoints)
« no previous file with comments | « no previous file | LayoutTests/fast/events/touch/gesture/gesture-scroll-zoomed-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698