source: Dev/trunk/src/client/dojox/grid/tests/performance/module.js

Last change on this file was 483, checked in by hendrikvanantwerpen, 11 years ago

Added Dojo 1.9.3 release.

File size: 987 bytes
Line 
1dojo.provide("dojox.grid.tests.performance.module");
2
3doh.register("dojox.grid.tests.performance.module", []);
4
5try{
6        var numRows = [100];
7        var layouts = ["Single", "Dual"];
8        var selectors = [false, true];
9        dojo.forEach(numRows, function(r){
10                dojo.forEach(layouts, function(l){
11                        dojo.forEach(selectors, function(s){
12                                // 5-minute timeout on each of these - since they can take quite a while...
13                                doh.registerUrl("Grid Creation - " + r + " Rows, " + l + " Layout" + (s ? "w/ selector" : ""),
14                                        dojo.moduleUrl("dojox.grid.tests.performance", "creation.html") +
15                                                                        "?rows=" + r + "&layout=" + l.toLowerCase() + "&rowSelector=" + s,
16                                        300000);
17                                doh.registerUrl("Grid dojo.data Notification - " + r + " Rows, " + l + " Layout" + (s ? "w/ selector" : ""),
18                                        dojo.moduleUrl("dojox.grid.tests.performance", "dataNotification.html") +
19                                                                        "?rows=" + r + "&layout=" + l.toLowerCase() + "&rowSelector=" + s,
20                                        300000);
21                        });
22                });
23        });
24}catch(e){
25        doh.debug(e);
26}
Note: See TracBrowser for help on using the repository browser.