OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 # pylint: disable=W0401,W0614 | 4 # pylint: disable=W0401,W0614 |
5 from telemetry.page.actions.all_page_actions import * | 5 from telemetry.page.actions.all_page_actions import * |
6 from telemetry.page import page as page_module | 6 from telemetry.page import page as page_module |
7 from telemetry.page import page_set as page_set_module | 7 from telemetry.page import page_set as page_set_module |
8 | 8 |
9 | 9 |
10 class ToughAnimationCasesPage(page_module.Page): | 10 class ToughAnimationCasesPage(page_module.Page): |
11 | 11 |
12 def __init__(self, url, page_set, need_measurement_ready): | 12 def __init__(self, url, page_set, need_measurement_ready): |
13 super(ToughAnimationCasesPage, self).__init__(url=url, page_set=page_set) | 13 super(ToughAnimationCasesPage, self).__init__(url=url, page_set=page_set) |
14 self.archive_data_file = 'data/tough_animation_cases.json' | 14 self.archive_data_file = 'data/tough_animation_cases.json' |
15 self._need_measurement_ready = need_measurement_ready | 15 self._need_measurement_ready = need_measurement_ready |
16 | 16 |
17 def RunNavigateSteps(self, action_runner): | 17 def RunNavigateSteps(self, action_runner): |
18 action_runner.RunAction(NavigateAction()) | 18 action_runner.NavigateToPage(self) |
19 if self._need_measurement_ready: | 19 if self._need_measurement_ready: |
20 action_runner.RunAction(WaitAction({"javascript": "measurementReady"})) | 20 action_runner.RunAction(WaitAction({"javascript": "measurementReady"})) |
21 | 21 |
22 def RunSmoothness(self, action_runner): | 22 def RunSmoothness(self, action_runner): |
23 action_runner.RunAction(WaitAction({"seconds": 10})) | 23 action_runner.RunAction(WaitAction({"seconds": 10})) |
24 | 24 |
25 class ToughAnimationCasesPageSet(page_set_module.PageSet): | 25 class ToughAnimationCasesPageSet(page_set_module.PageSet): |
26 | 26 |
27 """ | 27 """ |
28 Description: A collection of animation performance tests | 28 Description: A collection of animation performance tests |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 'file://tough_animation_cases/transform_transitions.html', | 69 'file://tough_animation_cases/transform_transitions.html', |
70 # Why: Login page is slow because of ineffecient transform operations. | 70 # Why: Login page is slow because of ineffecient transform operations. |
71 'http://ie.microsoft.com/testdrive/performance/robohornetpro/', | 71 'http://ie.microsoft.com/testdrive/performance/robohornetpro/', |
72 # Why: JS execution blocks CSS transition unless initial transform is set. | 72 # Why: JS execution blocks CSS transition unless initial transform is set. |
73 'file://tough_animation_cases/transform_transition_js_block.html' | 73 'file://tough_animation_cases/transform_transition_js_block.html' |
74 ] | 74 ] |
75 | 75 |
76 for url in urls_list_two: | 76 for url in urls_list_two: |
77 self.AddPage(ToughAnimationCasesPage(url, self, | 77 self.AddPage(ToughAnimationCasesPage(url, self, |
78 need_measurement_ready=False)) | 78 need_measurement_ready=False)) |
OLD | NEW |