OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 | 4 |
5 from benchmarks import silk_flags | 5 from benchmarks import silk_flags |
6 from measurements import smoothness | 6 from measurements import smoothness |
7 from telemetry import test | 7 from telemetry import test |
8 | 8 |
9 | 9 |
10 class SmoothnessTop25(test.Test): | 10 class SmoothnessTop25(test.Test): |
(...skipping 11 matching lines...) Expand all Loading... |
22 | 22 |
23 | 23 |
24 class SmoothnessKeyMobileSites(test.Test): | 24 class SmoothnessKeyMobileSites(test.Test): |
25 """Measures rendering statistics while scrolling down the key mobile sites. | 25 """Measures rendering statistics while scrolling down the key mobile sites. |
26 | 26 |
27 http://www.chromium.org/developers/design-documents/rendering-benchmarks""" | 27 http://www.chromium.org/developers/design-documents/rendering-benchmarks""" |
28 test = smoothness.Smoothness | 28 test = smoothness.Smoothness |
29 page_set = 'page_sets/key_mobile_sites.json' | 29 page_set = 'page_sets/key_mobile_sites.json' |
30 | 30 |
31 | 31 |
| 32 @test.Disabled('android') # crbug.com/350692 |
32 class SmoothnessToughAnimationCases(test.Test): | 33 class SmoothnessToughAnimationCases(test.Test): |
33 test = smoothness.Smoothness | 34 test = smoothness.Smoothness |
34 page_set = 'page_sets/tough_animation_cases.json' | 35 page_set = 'page_sets/tough_animation_cases.json' |
35 | 36 |
36 | 37 |
37 class SmoothnessKeySilkCases(test.Test): | 38 class SmoothnessKeySilkCases(test.Test): |
38 """Measures rendering statistics for the key silk cases without GPU | 39 """Measures rendering statistics for the key silk cases without GPU |
39 rasterization | 40 rasterization |
40 """ | 41 """ |
41 test = smoothness.Smoothness | 42 test = smoothness.Smoothness |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 silk_flags.CustomizeBrowserOptionsForFastPath(options) | 108 silk_flags.CustomizeBrowserOptionsForFastPath(options) |
108 | 109 |
109 | 110 |
110 @test.Enabled('android') | 111 @test.Enabled('android') |
111 class SmoothnessToughPinchZoomCases(test.Test): | 112 class SmoothnessToughPinchZoomCases(test.Test): |
112 """Measures rendering statistics for pinch-zooming into the tough pinch zoom | 113 """Measures rendering statistics for pinch-zooming into the tough pinch zoom |
113 cases | 114 cases |
114 """ | 115 """ |
115 test = smoothness.Smoothness | 116 test = smoothness.Smoothness |
116 page_set = 'page_sets/tough_pinch_zoom_cases.json' | 117 page_set = 'page_sets/tough_pinch_zoom_cases.json' |
OLD | NEW |