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 # win7: http://crbug.com/479796 | 237 # win: http://crbug.com/479796, http://crbug.com/529330 |
238 # android: http://crbug.com/503138 | 238 # android: http://crbug.com/503138 |
239 # win8: http://crbug.com/529330 | |
240 # linux: http://crbug.com/583075 | 239 # linux: http://crbug.com/583075 |
241 @benchmark.Disabled('win7', 'android', 'win8', 'linux') | 240 @benchmark.Disabled('win-ref', 'android', 'linux') |
242 class DromaeoJslibModifyJquery(_DromaeoBenchmark): | 241 class DromaeoJslibModifyJquery(_DromaeoBenchmark): |
243 """Dromaeo JSLib modify jquery JavaScript benchmark. | 242 """Dromaeo JSLib modify jquery JavaScript benchmark. |
244 | 243 |
245 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 |
246 JavaScript Library. | 245 JavaScript Library. |
247 """ | 246 """ |
248 tag = 'jslibmodifyjquery' | 247 tag = 'jslibmodifyjquery' |
249 query_param = 'jslib-modify-jquery' | 248 query_param = 'jslib-modify-jquery' |
250 | 249 |
251 @classmethod | 250 @classmethod |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
328 """Dromaeo CSS Query jquery JavaScript benchmark. | 327 """Dromaeo CSS Query jquery JavaScript benchmark. |
329 | 328 |
330 Tests traversing a DOM structure using the Prototype JavaScript Library. | 329 Tests traversing a DOM structure using the Prototype JavaScript Library. |
331 """ | 330 """ |
332 tag = 'cssqueryjquery' | 331 tag = 'cssqueryjquery' |
333 query_param = 'cssquery-jquery' | 332 query_param = 'cssquery-jquery' |
334 | 333 |
335 @classmethod | 334 @classmethod |
336 def Name(cls): | 335 def Name(cls): |
337 return 'dromaeo.cssqueryjquery' | 336 return 'dromaeo.cssqueryjquery' |
OLD | NEW |