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

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

Issue 2562493002: Revert of Disable dromaeo.jslibmodifyjquery on Windows (Closed)
Patch Set: Created 4 years 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 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 JavaScript Library. 229 JavaScript Library.
230 """ 230 """
231 tag = 'jslibeventprototype' 231 tag = 'jslibeventprototype'
232 query_param = 'jslib-event-prototype' 232 query_param = 'jslib-event-prototype'
233 233
234 @classmethod 234 @classmethod
235 def Name(cls): 235 def Name(cls):
236 return 'dromaeo.jslibeventprototype' 236 return 'dromaeo.jslibeventprototype'
237 237
238 238
239 # win: http://crbug.com/479796, http://crbug.com/598705, 239 # win: http://crbug.com/479796, http://crbug.com/598705
240 # http://crbug.com/668164
241 # android: http://crbug.com/503138 240 # android: http://crbug.com/503138
242 # linux: http://crbug.com/583075 241 # linux: http://crbug.com/583075
243 @benchmark.Disabled('win', 'win-reference', 'android', 'linux') 242 @benchmark.Disabled('win-reference', 'android', 'linux')
244 class DromaeoJslibModifyJquery(_DromaeoBenchmark): 243 class DromaeoJslibModifyJquery(_DromaeoBenchmark):
245 """Dromaeo JSLib modify jquery JavaScript benchmark. 244 """Dromaeo JSLib modify jquery JavaScript benchmark.
246 245
247 Tests creating and injecting DOM nodes into a document using the jQuery 246 Tests creating and injecting DOM nodes into a document using the jQuery
248 JavaScript Library. 247 JavaScript Library.
249 """ 248 """
250 tag = 'jslibmodifyjquery' 249 tag = 'jslibmodifyjquery'
251 query_param = 'jslib-modify-jquery' 250 query_param = 'jslib-modify-jquery'
252 251
253 @classmethod 252 @classmethod
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
329 """Dromaeo CSS Query jquery JavaScript benchmark. 328 """Dromaeo CSS Query jquery JavaScript benchmark.
330 329
331 Tests traversing a DOM structure using the Prototype JavaScript Library. 330 Tests traversing a DOM structure using the Prototype JavaScript Library.
332 """ 331 """
333 tag = 'cssqueryjquery' 332 tag = 'cssqueryjquery'
334 query_param = 'cssquery-jquery' 333 query_param = 'cssquery-jquery'
335 334
336 @classmethod 335 @classmethod
337 def Name(cls): 336 def Name(cls):
338 return 'dromaeo.cssqueryjquery' 337 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