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

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

Issue 2378663002: binding: Re-enables dromaeo.jslibattrprototype. (Closed)
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 @benchmark.Disabled('all') # crbug.com/650317
199 class DromaeoJslibAttrPrototype(_DromaeoBenchmark): 198 class DromaeoJslibAttrPrototype(_DromaeoBenchmark):
200 """Dromaeo JSLib attr prototype JavaScript benchmark. 199 """Dromaeo JSLib attr prototype JavaScript benchmark.
201 200
202 Tests setting and getting DOM node attributes using the jQuery JavaScript 201 Tests setting and getting DOM node attributes using the jQuery JavaScript
203 Library. 202 Library.
204 """ 203 """
205 tag = 'jslibattrprototype' 204 tag = 'jslibattrprototype'
206 query_param = 'jslib-attr-prototype' 205 query_param = 'jslib-attr-prototype'
207 206
208 @classmethod 207 @classmethod
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
332 """Dromaeo CSS Query jquery JavaScript benchmark. 331 """Dromaeo CSS Query jquery JavaScript benchmark.
333 332
334 Tests traversing a DOM structure using the Prototype JavaScript Library. 333 Tests traversing a DOM structure using the Prototype JavaScript Library.
335 """ 334 """
336 tag = 'cssqueryjquery' 335 tag = 'cssqueryjquery'
337 query_param = 'cssquery-jquery' 336 query_param = 'cssquery-jquery'
338 337
339 @classmethod 338 @classmethod
340 def Name(cls): 339 def Name(cls):
341 return 'dromaeo.cssqueryjquery' 340 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