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 ToughCanvasCasesPage(page_module.Page): | 10 class ToughCanvasCasesPage(page_module.Page): |
11 | 11 |
12 def __init__(self, url, page_set): | 12 def __init__(self, url, page_set): |
13 super(ToughCanvasCasesPage, self).__init__(url=url, page_set=page_set) | 13 super(ToughCanvasCasesPage, self).__init__(url=url, page_set=page_set) |
14 self.archive_data_file = 'data/tough_canvas_cases.json' | 14 self.archive_data_file = 'data/tough_canvas_cases.json' |
15 | 15 |
16 def RunNavigateSteps(self, action_runner): | 16 def RunNavigateSteps(self, action_runner): |
17 action_runner.RunAction(NavigateAction()) | 17 action_runner.NavigateToPage(self) |
18 action_runner.RunAction(WaitAction( | 18 action_runner.RunAction(WaitAction( |
19 { | 19 { |
20 "javascript": "document.readyState == 'complete'" | 20 "javascript": "document.readyState == 'complete'" |
21 })) | 21 })) |
22 | 22 |
23 def RunSmoothness(self, action_runner): | 23 def RunSmoothness(self, action_runner): |
24 action_runner.RunAction(WaitAction( | 24 action_runner.RunAction(WaitAction( |
25 { | 25 { |
26 "seconds": 5 | 26 "seconds": 5 |
27 })) | 27 })) |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 'file://tough_canvas_cases/canvas2d_balls_common/bouncing_balls.html?ball=
filled_path&back=gradient', | 85 'file://tough_canvas_cases/canvas2d_balls_common/bouncing_balls.html?ball=
filled_path&back=gradient', |
86 # pylint: disable=C0301 | 86 # pylint: disable=C0301 |
87 'file://tough_canvas_cases/canvas2d_balls_common/bouncing_balls.html?ball=
text&back=white&ball_count=15', | 87 'file://tough_canvas_cases/canvas2d_balls_common/bouncing_balls.html?ball=
text&back=white&ball_count=15', |
88 'file://tough_canvas_cases/canvas-animation-no-clear.html', | 88 'file://tough_canvas_cases/canvas-animation-no-clear.html', |
89 'file://../../../chrome/test/data/perf/canvas_bench/single_image.html', | 89 'file://../../../chrome/test/data/perf/canvas_bench/single_image.html', |
90 'file://../../../chrome/test/data/perf/canvas_bench/many_images.html' | 90 'file://../../../chrome/test/data/perf/canvas_bench/many_images.html' |
91 ] | 91 ] |
92 | 92 |
93 for url in urls_list: | 93 for url in urls_list: |
94 self.AddPage(ToughCanvasCasesPage(url, self)) | 94 self.AddPage(ToughCanvasCasesPage(url, self)) |
OLD | NEW |