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

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

Added Dojo 1.9.3 release.

  • Property svn:executable set to *
File size: 866 bytes
Line 
1dojo.provide("dojox.grid.tests.robot.module");
2
3try{
4        var userArgs = window.location.search.replace(/[\?&](dojoUrl|testUrl|testModule)=[^&]*/g,"").replace(/^&/,"?");
5
6        // Safari 3 doesn't support focus on nodes like <div>, so keyboard isn't supported there...
7        // Safari 4 almost works, but has problems with shift-tab (#8987) and ESC (#9506).
8        // Enable tests when those bugs are fixed.
9        var test_a11y = dojo.isFF || dojo.isIE;
10       
11        var test_robot = true;
12
13        doh.registerUrl("dojox.grid.tests.robot.DataGrid_mouse", dojo.moduleUrl("dojox.grid", "tests/robot/DataGrid_mouse.html"), 99999999);
14        doh.registerUrl("dojox.grid.tests.robot.DataGrid_a11y", dojo.moduleUrl("dojox.grid", "tests/robot/DataGrid_a11y.html"), 99999999);
15        doh.registerUrl("dojox.grid.tests.robot.7815", dojo.moduleUrl("dojox.grid", "tests/robot/7815.html"), 99999999);
16}catch(e){
17        doh.debug(e);
18}
19
20
Note: See TracBrowser for help on using the repository browser.