| Index: tools/perf/page_sets/simple_mobile_sites_fling.py
|
| diff --git a/tools/perf/page_sets/simple_mobile_sites_fling.py b/tools/perf/page_sets/simple_mobile_sites_fling.py
|
| index f158be0dbcfe469d560f512f0090b458069c88f0..48c2cef7ea01ea35fab872ee91a2d4cb65edde9e 100644
|
| --- a/tools/perf/page_sets/simple_mobile_sites_fling.py
|
| +++ b/tools/perf/page_sets/simple_mobile_sites_fling.py
|
| @@ -25,9 +25,9 @@ class SimpleFlingPage(page_module.Page):
|
|
|
| def RunPageInteractions(self, action_runner):
|
| with action_runner.CreateGestureInteraction('FlingAction'):
|
| - # Swiping up induces a downward fling, and 500 pixels of touch scrolling
|
| - # runway ensures consistent fling velocities.
|
| - action_runner.SwipePage(direction='up',
|
| + # Swiping down induces a downward fling, and 500 pixels of touch
|
| + # scrolling runway ensures consistent fling velocities.
|
| + action_runner.SwipePage(direction='down',
|
| distance='500',
|
| speed_in_pixels_per_second=5000)
|
|
|
|
|