| 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 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 | 188 |
| 189 @classmethod | 189 @classmethod |
| 190 def Name(cls): | 190 def Name(cls): |
| 191 return 'dromaeo.jslibattrjquery' | 191 return 'dromaeo.jslibattrjquery' |
| 192 | 192 |
| 193 @classmethod | 193 @classmethod |
| 194 def ShouldDisable(cls, possible_browser): | 194 def ShouldDisable(cls, possible_browser): |
| 195 # http://crbug.com/634055 (Android One). | 195 # http://crbug.com/634055 (Android One). |
| 196 return cls.IsSvelte(possible_browser) | 196 return cls.IsSvelte(possible_browser) |
| 197 | 197 |
| 198 | 198 @benchmark.Disabled('all') # crbug.com/650317 |
| 199 class DromaeoJslibAttrPrototype(_DromaeoBenchmark): | 199 class DromaeoJslibAttrPrototype(_DromaeoBenchmark): |
| 200 """Dromaeo JSLib attr prototype JavaScript benchmark. | 200 """Dromaeo JSLib attr prototype JavaScript benchmark. |
| 201 | 201 |
| 202 Tests setting and getting DOM node attributes using the jQuery JavaScript | 202 Tests setting and getting DOM node attributes using the jQuery JavaScript |
| 203 Library. | 203 Library. |
| 204 """ | 204 """ |
| 205 tag = 'jslibattrprototype' | 205 tag = 'jslibattrprototype' |
| 206 query_param = 'jslib-attr-prototype' | 206 query_param = 'jslib-attr-prototype' |
| 207 | 207 |
| 208 @classmethod | 208 @classmethod |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 332 """Dromaeo CSS Query jquery JavaScript benchmark. | 332 """Dromaeo CSS Query jquery JavaScript benchmark. |
| 333 | 333 |
| 334 Tests traversing a DOM structure using the Prototype JavaScript Library. | 334 Tests traversing a DOM structure using the Prototype JavaScript Library. |
| 335 """ | 335 """ |
| 336 tag = 'cssqueryjquery' | 336 tag = 'cssqueryjquery' |
| 337 query_param = 'cssquery-jquery' | 337 query_param = 'cssquery-jquery' |
| 338 | 338 |
| 339 @classmethod | 339 @classmethod |
| 340 def Name(cls): | 340 def Name(cls): |
| 341 return 'dromaeo.cssqueryjquery' | 341 return 'dromaeo.cssqueryjquery' |
| OLD | NEW |