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 import sys | 5 import sys |
6 | 6 |
7 from telemetry import test | 7 from telemetry import test |
8 | 8 |
9 from measurements import smoothness | 9 from measurements import smoothness |
10 | 10 |
(...skipping 11 matching lines...) Expand all Loading... |
22 enabled = sys.platform != 'darwin' | 22 enabled = sys.platform != 'darwin' |
23 page_set = 'page_sets/tough_canvas_cases.json' | 23 page_set = 'page_sets/tough_canvas_cases.json' |
24 | 24 |
25 | 25 |
26 class SmoothnessKeyMobileSites(test.Test): | 26 class SmoothnessKeyMobileSites(test.Test): |
27 """Measures rendering statistics while scrolling down the key mobile sites. | 27 """Measures rendering statistics while scrolling down the key mobile sites. |
28 | 28 |
29 http://www.chromium.org/developers/design-documents/rendering-benchmarks""" | 29 http://www.chromium.org/developers/design-documents/rendering-benchmarks""" |
30 test = smoothness.Smoothness | 30 test = smoothness.Smoothness |
31 page_set = 'page_sets/key_mobile_sites.json' | 31 page_set = 'page_sets/key_mobile_sites.json' |
| 32 |
| 33 |
| 34 class SmoothnessToughSchedulingCases(test.Test): |
| 35 """Measures rendering statistics while interacting with pages that have |
| 36 challenging scheduling properties. |
| 37 |
| 38 https://docs.google.com/a/chromium.org/document/d/ |
| 39 17yhE5Po9By0sCdM1yZT3LiUECaUr_94rQt9j-4tOQIM/view""" |
| 40 test = smoothness.Smoothness |
| 41 page_set = 'page_sets/tough_scheduling_cases.json' |
OLD | NEW |