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

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

Issue 2047773002: Added telemetry pages for the canvas element. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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_canvas_cases/rendering_throughput/bouncing_clipped_rectangles.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 import story 5 from telemetry import story
6 6
7 7
8 class ToughCanvasCasesPage(page_module.Page): 8 class ToughCanvasCasesPage(page_module.Page):
9 9
10 def __init__(self, url, page_set): 10 def __init__(self, url, page_set):
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 'http://spielzeugz.de/html5/liquid-particles.html', 63 'http://spielzeugz.de/html5/liquid-particles.html',
64 'http://hakim.se/experiments/html5/magnetic/02/', 64 'http://hakim.se/experiments/html5/magnetic/02/',
65 'http://ie.microsoft.com/testdrive/Performance/LetItSnow/', 65 'http://ie.microsoft.com/testdrive/Performance/LetItSnow/',
66 # crbug.com/501406 causes OOM failures on perf bots 66 # crbug.com/501406 causes OOM failures on perf bots
67 # 'http://ie.microsoft.com/testdrive/Graphics/WorkerFountains/Default.html ', 67 # 'http://ie.microsoft.com/testdrive/Graphics/WorkerFountains/Default.html ',
68 'http://ie.microsoft.com/testdrive/Graphics/TweetMap/Default.html', 68 'http://ie.microsoft.com/testdrive/Graphics/TweetMap/Default.html',
69 'http://ie.microsoft.com/testdrive/Graphics/VideoCity/Default.html', 69 'http://ie.microsoft.com/testdrive/Graphics/VideoCity/Default.html',
70 'http://ie.microsoft.com/testdrive/Performance/AsteroidBelt/Default.html', 70 'http://ie.microsoft.com/testdrive/Performance/AsteroidBelt/Default.html',
71 'http://www.smashcat.org/av/canvas_test/', 71 'http://www.smashcat.org/av/canvas_test/',
72 # pylint: disable=line-too-long 72 # pylint: disable=line-too-long
73 'file://tough_canvas_cases/canvas2d_balls_common/bouncing_balls.html?ball= canvas_sprite&back=canvas', 73 'file://tough_canvas_cases/canvas2d_balls_common/bouncing_balls.html?ball= canvas_sprite&back=canvas',
Justin Novosad 2016/06/08 17:14:21 Get rid of this one, which is now redundant.
sebastienlc 2016/06/08 19:06:27 Done.
74 # pylint: disable=line-too-long 74 # pylint: disable=line-too-long
75 'file://tough_canvas_cases/canvas2d_balls_common/bouncing_balls.html?ball= image_with_shadow&back=image', 75 'file://tough_canvas_cases/canvas2d_balls_common/bouncing_balls.html?ball= image_with_shadow&back=image',
76 # pylint: disable=line-too-long 76 # pylint: disable=line-too-long
77 'file://tough_canvas_cases/canvas2d_balls_common/bouncing_balls.html?ball= filled_path&back=gradient', 77 'file://tough_canvas_cases/canvas2d_balls_common/bouncing_balls.html?ball= filled_path&back=gradient',
Justin Novosad 2016/06/08 17:14:21 This one too
sebastienlc 2016/06/08 19:06:28 Done.
78 # pylint: disable=line-too-long 78 # pylint: disable=line-too-long
79 'file://tough_canvas_cases/canvas2d_balls_common/bouncing_balls.html?ball= text&back=white&ball_count=15', 79 'file://tough_canvas_cases/canvas2d_balls_common/bouncing_balls.html?ball= text&back=white&ball_count=15',
80 'file://tough_canvas_cases/canvas-font-cycler.html', 80 'file://tough_canvas_cases/canvas-font-cycler.html',
81 'file://tough_canvas_cases/canvas-animation-no-clear.html', 81 'file://tough_canvas_cases/canvas-animation-no-clear.html',
82 'file://tough_canvas_cases/canvas_toBlob.html', 82 'file://tough_canvas_cases/canvas_toBlob.html',
83 'file://../../../chrome/test/data/perf/canvas_bench/single_image.html', 83 'file://../../../chrome/test/data/perf/canvas_bench/single_image.html',
Justin Novosad 2016/06/08 17:14:21 This one too
sebastienlc 2016/06/08 19:06:28 Done.
84 'file://../../../chrome/test/data/perf/canvas_bench/many_images.html', 84 'file://../../../chrome/test/data/perf/canvas_bench/many_images.html',
85 'file://tough_canvas_cases/rendering_throughput/canvas_arcs.html' 85 'file://tough_canvas_cases/rendering_throughput/canvas_arcs.html',
86 'file://tough_canvas_cases/rendering_throughput/canvas_lines.html',
87 'file://tough_canvas_cases/rendering_throughput/put_get_image_data.html',
88 'file://tough_canvas_cases/rendering_throughput/fill_shapes.html',
89 'file://tough_canvas_cases/rendering_throughput/stroke_shapes.html',
90 'file://tough_canvas_cases/rendering_throughput/bouncing_clipped_rectangle s.html',
91 'file://tough_canvas_cases/rendering_throughput/bouncing_gradient_circles. html',
92 'file://tough_canvas_cases/rendering_throughput/bouncing_svg_images.html',
93 'file://tough_canvas_cases/rendering_throughput/bouncing_png_images.html'
86 ] 94 ]
87 95
88 for url in urls_list: 96 for url in urls_list:
89 self.AddStory(ToughCanvasCasesPage(url, self)) 97 self.AddStory(ToughCanvasCasesPage(url, self))
OLDNEW
« no previous file with comments | « no previous file | tools/perf/page_sets/tough_canvas_cases/rendering_throughput/bouncing_clipped_rectangles.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698