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

Side by Side Diff: tools/perf/page_sets/tough_animation_cases.py

Issue 1156993002: Migrate blink_perf.animation mix-blend-mode-* to smoothness.tough_animation_cases (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Bad comma Created 5 years, 6 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 unified diff | Download patch
« no previous file with comments | « no previous file | tools/perf/page_sets/tough_animation_cases/mix_blend_mode_animation_difference.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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))
OLDNEW
« no previous file with comments | « no previous file | tools/perf/page_sets/tough_animation_cases/mix_blend_mode_animation_difference.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698