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

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

Issue 321863003: Adding cloud permission buckets to pages sets that are part of crbug.com/374764 or already in cloud… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nit Created 6 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
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 # 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):
(...skipping 12 matching lines...) Expand all
23 action_runner.Wait(10) 23 action_runner.Wait(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
29 """ 29 """
30 30
31 def __init__(self): 31 def __init__(self):
32 super(ToughAnimationCasesPageSet, self).__init__( 32 super(ToughAnimationCasesPageSet, self).__init__(
33 archive_data_file='data/tough_animation_cases.json') 33 archive_data_file='data/tough_animation_cases.json',
34 bucket=page_set_module.PARTNER_BUCKET)
34 35
35 urls_list_one = [ 36 urls_list_one = [
36 # Why: Tests the balls animation implemented with SVG animations. 37 # Why: Tests the balls animation implemented with SVG animations.
37 'file://tough_animation_cases/balls_svg_animations.html', 38 'file://tough_animation_cases/balls_svg_animations.html',
38 # Why: Tests the balls animation implemented with Javascript and canvas. 39 # Why: Tests the balls animation implemented with Javascript and canvas.
39 'file://tough_animation_cases/balls_javascript_canvas.html', 40 'file://tough_animation_cases/balls_javascript_canvas.html',
40 # Why: Tests the balls animation implemented with Javascript and CSS. 41 # Why: Tests the balls animation implemented with Javascript and CSS.
41 'file://tough_animation_cases/balls_javascript_css.html', 42 'file://tough_animation_cases/balls_javascript_css.html',
42 # Why: Tests the balls animation implemented with CSS keyframe animations. 43 # Why: Tests the balls animation implemented with CSS keyframe animations.
43 'file://tough_animation_cases/balls_css_keyframe_animations.html', 44 'file://tough_animation_cases/balls_css_keyframe_animations.html',
(...skipping 25 matching lines...) Expand all
69 'file://tough_animation_cases/transform_transitions.html', 70 'file://tough_animation_cases/transform_transitions.html',
70 # Why: Login page is slow because of ineffecient transform operations. 71 # Why: Login page is slow because of ineffecient transform operations.
71 'http://ie.microsoft.com/testdrive/performance/robohornetpro/', 72 'http://ie.microsoft.com/testdrive/performance/robohornetpro/',
72 # Why: JS execution blocks CSS transition unless initial transform is set. 73 # Why: JS execution blocks CSS transition unless initial transform is set.
73 'file://tough_animation_cases/transform_transition_js_block.html' 74 'file://tough_animation_cases/transform_transition_js_block.html'
74 ] 75 ]
75 76
76 for url in urls_list_two: 77 for url in urls_list_two:
77 self.AddPage(ToughAnimationCasesPage(url, self, 78 self.AddPage(ToughAnimationCasesPage(url, self,
78 need_measurement_ready=False)) 79 need_measurement_ready=False))
OLDNEW
« no previous file with comments | « tools/perf/page_sets/top_desktop_sites_2012Q3.py ('k') | tools/perf/page_sets/tough_canvas_cases.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698