Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(188)

Side by Side Diff: tools/perf/benchmarks/dromaeo.py

Issue 2371873003: Disable dromaeo.jslibattrprototype on platforms. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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'
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698