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.NavigateToPage(self) | 17 action_runner.NavigateToPage(self) |
18 action_runner.RunAction(WaitAction( | 18 action_runner.WaitForJavaScriptCondition( |
19 { | 19 "document.readyState == 'complete'") |
20 "javascript": "document.readyState == 'complete'" | |
21 })) | |
22 | 20 |
23 def RunSmoothness(self, action_runner): | 21 def RunSmoothness(self, action_runner): |
24 action_runner.RunAction(WaitAction( | 22 action_runner.Wait(5) |
25 { | |
26 "seconds": 5 | |
27 })) | |
28 | 23 |
29 | 24 |
30 class MicrosofFirefliesPage(ToughCanvasCasesPage): | 25 class MicrosofFirefliesPage(ToughCanvasCasesPage): |
31 | 26 |
32 def __init__(self, page_set): | 27 def __init__(self, page_set): |
33 super(MicrosofFirefliesPage, self).__init__( | 28 super(MicrosofFirefliesPage, self).__init__( |
34 # pylint: disable=C0301 | 29 # pylint: disable=C0301 |
35 url='http://ie.microsoft.com/testdrive/Performance/Fireflies/Default.html'
, | 30 url='http://ie.microsoft.com/testdrive/Performance/Fireflies/Default.html'
, |
36 page_set=page_set) | 31 page_set=page_set) |
37 | 32 |
(...skipping 47 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', | 80 'file://tough_canvas_cases/canvas2d_balls_common/bouncing_balls.html?ball=
filled_path&back=gradient', |
86 # pylint: disable=C0301 | 81 # pylint: disable=C0301 |
87 'file://tough_canvas_cases/canvas2d_balls_common/bouncing_balls.html?ball=
text&back=white&ball_count=15', | 82 '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', | 83 'file://tough_canvas_cases/canvas-animation-no-clear.html', |
89 'file://../../../chrome/test/data/perf/canvas_bench/single_image.html', | 84 'file://../../../chrome/test/data/perf/canvas_bench/single_image.html', |
90 'file://../../../chrome/test/data/perf/canvas_bench/many_images.html' | 85 'file://../../../chrome/test/data/perf/canvas_bench/many_images.html' |
91 ] | 86 ] |
92 | 87 |
93 for url in urls_list: | 88 for url in urls_list: |
94 self.AddPage(ToughCanvasCasesPage(url, self)) | 89 self.AddPage(ToughCanvasCasesPage(url, self)) |
OLD | NEW |