| 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 core import perf_benchmark | 8 from core import perf_benchmark |
| 9 | 9 |
| 10 from telemetry import benchmark | 10 from telemetry import benchmark |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 JavaScript Library. | 227 JavaScript Library. |
| 228 """ | 228 """ |
| 229 tag = 'jslibeventprototype' | 229 tag = 'jslibeventprototype' |
| 230 query_param = 'jslib-event-prototype' | 230 query_param = 'jslib-event-prototype' |
| 231 | 231 |
| 232 @classmethod | 232 @classmethod |
| 233 def Name(cls): | 233 def Name(cls): |
| 234 return 'dromaeo.jslibeventprototype' | 234 return 'dromaeo.jslibeventprototype' |
| 235 | 235 |
| 236 | 236 |
| 237 # win: http://crbug.com/479796, http://crbug.com/529330 | 237 # win: http://crbug.com/479796, http://crbug.com/529330, http://crbug.com/598705 |
| 238 # android: http://crbug.com/503138 | 238 # android: http://crbug.com/503138 |
| 239 # linux: http://crbug.com/583075 | 239 # linux: http://crbug.com/583075 |
| 240 @benchmark.Disabled('win-ref', 'android', 'linux') | 240 @benchmark.Disabled('win-reference', 'android', 'linux') |
| 241 class DromaeoJslibModifyJquery(_DromaeoBenchmark): | 241 class DromaeoJslibModifyJquery(_DromaeoBenchmark): |
| 242 """Dromaeo JSLib modify jquery JavaScript benchmark. | 242 """Dromaeo JSLib modify jquery JavaScript benchmark. |
| 243 | 243 |
| 244 Tests creating and injecting DOM nodes into a document using the jQuery | 244 Tests creating and injecting DOM nodes into a document using the jQuery |
| 245 JavaScript Library. | 245 JavaScript Library. |
| 246 """ | 246 """ |
| 247 tag = 'jslibmodifyjquery' | 247 tag = 'jslibmodifyjquery' |
| 248 query_param = 'jslib-modify-jquery' | 248 query_param = 'jslib-modify-jquery' |
| 249 | 249 |
| 250 @classmethod | 250 @classmethod |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 327 """Dromaeo CSS Query jquery JavaScript benchmark. | 327 """Dromaeo CSS Query jquery JavaScript benchmark. |
| 328 | 328 |
| 329 Tests traversing a DOM structure using the Prototype JavaScript Library. | 329 Tests traversing a DOM structure using the Prototype JavaScript Library. |
| 330 """ | 330 """ |
| 331 tag = 'cssqueryjquery' | 331 tag = 'cssqueryjquery' |
| 332 query_param = 'cssquery-jquery' | 332 query_param = 'cssquery-jquery' |
| 333 | 333 |
| 334 @classmethod | 334 @classmethod |
| 335 def Name(cls): | 335 def Name(cls): |
| 336 return 'dromaeo.cssqueryjquery' | 336 return 'dromaeo.cssqueryjquery' |
| OLD | NEW |