| 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 @test.Disabled # crbug.com/368767 |
| 10 class SmoothnessTop25(test.Test): | 11 class SmoothnessTop25(test.Test): |
| 11 """Measures rendering statistics while scrolling down the top 25 web pages. | 12 """Measures rendering statistics while scrolling down the top 25 web pages. |
| 12 | 13 |
| 13 http://www.chromium.org/developers/design-documents/rendering-benchmarks""" | 14 http://www.chromium.org/developers/design-documents/rendering-benchmarks""" |
| 14 test = smoothness.Smoothness | 15 test = smoothness.Smoothness |
| 15 page_set = 'page_sets/top_25.py' | 16 page_set = 'page_sets/top_25.py' |
| 16 | 17 |
| 17 | 18 |
| 18 @test.Disabled('mac') | 19 @test.Disabled('mac') |
| 19 class SmoothnessToughCanvasCases(test.Test): | 20 class SmoothnessToughCanvasCases(test.Test): |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 """Measures rendering statistics for the Polymer cases with GPU rasterization | 162 """Measures rendering statistics for the Polymer cases with GPU rasterization |
| 162 using bleeding edge rendering fast paths. | 163 using bleeding edge rendering fast paths. |
| 163 """ | 164 """ |
| 164 tag = 'fast_path_gpu_rasterization' | 165 tag = 'fast_path_gpu_rasterization' |
| 165 test = smoothness.Smoothness | 166 test = smoothness.Smoothness |
| 166 page_set = 'page_sets/polymer.py' | 167 page_set = 'page_sets/polymer.py' |
| 167 def CustomizeBrowserOptions(self, options): | 168 def CustomizeBrowserOptions(self, options): |
| 168 super(SmoothnessFastPathGpuRasterizationPolymer, self). \ | 169 super(SmoothnessFastPathGpuRasterizationPolymer, self). \ |
| 169 CustomizeBrowserOptions(options) | 170 CustomizeBrowserOptions(options) |
| 170 silk_flags.CustomizeBrowserOptionsForFastPath(options) | 171 silk_flags.CustomizeBrowserOptionsForFastPath(options) |
| OLD | NEW |