| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 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 math | 5 import math |
| 6 import os | 6 import os |
| 7 | 7 |
| 8 from telemetry import benchmark | 8 from telemetry import benchmark |
| 9 from telemetry import page as page_module | 9 from telemetry import page as page_module |
| 10 from telemetry.page import page_set | 10 from telemetry.page import page_set |
| (...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 Library. | 205 Library. |
| 206 """ | 206 """ |
| 207 tag = 'jslibeventjquery' | 207 tag = 'jslibeventjquery' |
| 208 query_param = 'jslib-event-jquery' | 208 query_param = 'jslib-event-jquery' |
| 209 | 209 |
| 210 @classmethod | 210 @classmethod |
| 211 def Name(cls): | 211 def Name(cls): |
| 212 return 'dromaeo.jslibeventjquery' | 212 return 'dromaeo.jslibeventjquery' |
| 213 | 213 |
| 214 | 214 |
| 215 @benchmark.Disabled('android', 'linux') # http://crbug.com/476592 | |
| 216 class DromaeoJslibEventPrototype(_DromaeoBenchmark): | 215 class DromaeoJslibEventPrototype(_DromaeoBenchmark): |
| 217 """Dromaeo JSLib event prototype JavaScript benchmark. | 216 """Dromaeo JSLib event prototype JavaScript benchmark. |
| 218 | 217 |
| 219 Tests binding, removing, and triggering DOM events using the Prototype | 218 Tests binding, removing, and triggering DOM events using the Prototype |
| 220 JavaScript Library. | 219 JavaScript Library. |
| 221 """ | 220 """ |
| 222 tag = 'jslibeventprototype' | 221 tag = 'jslibeventprototype' |
| 223 query_param = 'jslib-event-prototype' | 222 query_param = 'jslib-event-prototype' |
| 224 | 223 |
| 225 @classmethod | 224 @classmethod |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 317 | 316 |
| 318 Tests traversing a DOM structure using the Prototype JavaScript Library. | 317 Tests traversing a DOM structure using the Prototype JavaScript Library. |
| 319 """ | 318 """ |
| 320 tag = 'cssqueryjquery' | 319 tag = 'cssqueryjquery' |
| 321 query_param = 'cssquery-jquery' | 320 query_param = 'cssquery-jquery' |
| 322 | 321 |
| 323 @classmethod | 322 @classmethod |
| 324 def Name(cls): | 323 def Name(cls): |
| 325 return 'dromaeo.cssqueryjquery' | 324 return 'dromaeo.cssqueryjquery' |
| 326 | 325 |
| OLD | NEW |