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

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

Issue 1089843003: Re-enable dromaeo.jslibeventprototype after v8 fix (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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 telemetry import benchmark 8 from telemetry import benchmark
9 from telemetry import page as page_module 9 from telemetry import page as page_module
10 from telemetry.page import page_set 10 from telemetry.page import page_set
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 Library. 205 Library.
206 """ 206 """
207 tag = 'jslibeventjquery' 207 tag = 'jslibeventjquery'
208 query_param = 'jslib-event-jquery' 208 query_param = 'jslib-event-jquery'
209 209
210 @classmethod 210 @classmethod
211 def Name(cls): 211 def Name(cls):
212 return 'dromaeo.jslibeventjquery' 212 return 'dromaeo.jslibeventjquery'
213 213
214 214
215 @benchmark.Disabled('android', 'linux') # http://crbug.com/476592
216 class DromaeoJslibEventPrototype(_DromaeoBenchmark): 215 class DromaeoJslibEventPrototype(_DromaeoBenchmark):
217 """Dromaeo JSLib event prototype JavaScript benchmark. 216 """Dromaeo JSLib event prototype JavaScript benchmark.
218 217
219 Tests binding, removing, and triggering DOM events using the Prototype 218 Tests binding, removing, and triggering DOM events using the Prototype
220 JavaScript Library. 219 JavaScript Library.
221 """ 220 """
222 tag = 'jslibeventprototype' 221 tag = 'jslibeventprototype'
223 query_param = 'jslib-event-prototype' 222 query_param = 'jslib-event-prototype'
224 223
225 @classmethod 224 @classmethod
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
317 316
318 Tests traversing a DOM structure using the Prototype JavaScript Library. 317 Tests traversing a DOM structure using the Prototype JavaScript Library.
319 """ 318 """
320 tag = 'cssqueryjquery' 319 tag = 'cssqueryjquery'
321 query_param = 'cssquery-jquery' 320 query_param = 'cssquery-jquery'
322 321
323 @classmethod 322 @classmethod
324 def Name(cls): 323 def Name(cls):
325 return 'dromaeo.cssqueryjquery' 324 return 'dromaeo.cssqueryjquery'
326 325
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