| 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 from telemetry.page import page as page_module | 4 from telemetry.page import page as page_module |
| 5 from telemetry.page import page_set as page_set_module | 5 from telemetry.page import page_set as page_set_module |
| 6 | 6 |
| 7 | 7 |
| 8 class ToughAnimationCasesPage(page_module.Page): | 8 class ToughAnimationCasesPage(page_module.Page): |
| 9 | 9 |
| 10 def __init__(self, url, page_set, need_measurement_ready): | 10 def __init__(self, url, page_set, need_measurement_ready): |
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 for url in urls_list_one: | 234 for url in urls_list_one: |
| 235 self.AddUserStory(ToughAnimationCasesPage(url, self, | 235 self.AddUserStory(ToughAnimationCasesPage(url, self, |
| 236 need_measurement_ready=True)) | 236 need_measurement_ready=True)) |
| 237 | 237 |
| 238 urls_list_two = [ | 238 urls_list_two = [ |
| 239 # Why: Tests various keyframed animations. | 239 # Why: Tests various keyframed animations. |
| 240 'file://tough_animation_cases/keyframed_animations.html', | 240 'file://tough_animation_cases/keyframed_animations.html', |
| 241 # Why: Tests various transitions. | 241 # Why: Tests various transitions. |
| 242 'file://tough_animation_cases/transform_transitions.html', | 242 'file://tough_animation_cases/transform_transitions.html', |
| 243 # Why: JS execution blocks CSS transition unless initial transform is set. | 243 # Why: JS execution blocks CSS transition unless initial transform is set. |
| 244 'file://tough_animation_cases/transform_transition_js_block.html' | 244 'file://tough_animation_cases/transform_transition_js_block.html', |
| 245 # Why: Tests animating elements having mix-blend-mode: difference (a |
| 246 # separable popular blend mode). |
| 247 'file://tough_animation_cases/mix_blend_mode_animation_difference.html', |
| 248 # Why: Tests animating elements having mix-blend-mode: hue (a |
| 249 # non-separable blend mode). |
| 250 'file://tough_animation_cases/mix_blend_mode_animation_hue.html', |
| 251 # Why: Tests animating elements having mix-blend-mode: screen. |
| 252 'file://tough_animation_cases/mix_blend_mode_animation_screen.html', |
| 253 # Why: Tests software-animating a deep DOM subtree having one blending |
| 254 # leaf. |
| 255 'file://tough_animation_cases/mix_blend_mode_propagating_isolation.html', |
| 245 | 256 |
| 246 # Disabled: crbug.com/350692 | 257 # Disabled: crbug.com/350692 |
| 247 # Why: Login page is slow because of ineffecient transform operations. | 258 # Why: Login page is slow because of ineffecient transform operations. |
| 248 # 'http://ie.microsoft.com/testdrive/performance/robohornetpro/', | 259 # 'http://ie.microsoft.com/testdrive/performance/robohornetpro/', |
| 249 ] | 260 ] |
| 250 | 261 |
| 251 for url in urls_list_two: | 262 for url in urls_list_two: |
| 252 self.AddUserStory(ToughAnimationCasesPage(url, self, | 263 self.AddUserStory(ToughAnimationCasesPage(url, self, |
| 253 need_measurement_ready=False)) | 264 need_measurement_ready=False)) |
| OLD | NEW |