source: Dev/trunk/src/client/dijit/tests/general-module.js @ 532

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

Added Dojo 1.9.3 release.

File size: 2.2 KB
Line 
1define(["doh/main", "require"], function(doh, require){
2
3        // top level widget tests
4        doh.register("Bidi", require.toUrl("./Bidi.html"), 999999);
5
6        doh.register("Menu", require.toUrl("./Menu.html"), 999999);
7        doh.register("robot.Menu_mouse", require.toUrl("./robot/Menu_mouse.html"), 999999);
8        doh.register("robot.Menu_a11y", require.toUrl("./robot/Menu_a11y.html"), 999999);
9        doh.register("robot.Menu_iframe", require.toUrl("./robot/Menu_iframe.html"), 999999);
10
11        doh.register("Dialog", require.toUrl("./Dialog.html"), 999999);
12        doh.register("robot.Dialog_mouse", require.toUrl("./robot/Dialog_mouse.html"), 999999);
13        doh.register("robot.Dialog_a11y", require.toUrl("./robot/Dialog_a11y.html"), 999999);
14        doh.register("robot.Dialog_focusDestroy", require.toUrl("./robot/Dialog_focusDestroy.html"), 999999);
15
16        doh.register("ProgressBar", require.toUrl("./ProgressBar.html"), 999999);
17
18        doh.register("robot.Tooltip_a11y", require.toUrl("./robot/Tooltip_a11y.html"), 999999);
19        doh.register("robot.Tooltip_mouse", require.toUrl("./robot/Tooltip_mouse.html"), 999999);
20        doh.register("robot.Tooltip_mouse_quirks", require.toUrl("./robot/Tooltip_mouse_quirks.html"), 999999);
21        doh.register("Tooltip-placement", require.toUrl("./Tooltip-placement.html"), 999999);
22
23        doh.register("TooltipDialog", require.toUrl("./TooltipDialog.html"), 999999);
24        doh.register("robot.TooltipDialog_mouse", require.toUrl("./robot/TooltipDialog_mouse.html"), 999999);
25        doh.register("robot.TooltipDialog_a11y", require.toUrl("./robot/TooltipDialog_a11y.html"), 999999);
26
27        doh.register("robot.InlineEditBox", require.toUrl("./robot/InlineEditBox.html"), 999999);
28       
29        doh.register("robot.ColorPalette", require.toUrl("./robot/ColorPalette.html"), 999999);
30
31        doh.register("CalendarLite", require.toUrl("./CalendarLite.html"), 999999);
32        doh.register("robot.Calendar_a11y", require.toUrl("./robot/Calendar_a11y.html"), 999999);
33
34        doh.register("robot.TitlePane", require.toUrl("./robot/TitlePane.html"), 999999);
35        doh.register("Fieldset", require.toUrl("./Fieldset.html"), 999999);
36
37        doh.register("robot.Toolbar", require.toUrl("./robot/Toolbar.html"), 999999);
38
39        doh.register("_TimePicker", require.toUrl("./_TimePicker.html"), 999999);
40
41});
Note: See TracBrowser for help on using the repository browser.