Changeset 13662
- Timestamp:
- 05/10/08 06:08:30 (6 days ago)
- Location:
- dijit/trunk/tests
- Files:
-
- 3 modified
-
tree/test_Tree_Programmatic.html (modified) (2 diffs)
-
tree/test_Tree_v1.html (modified) (2 diffs)
-
_testMatrix.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
dijit/trunk/tests/tree/test_Tree_Programmatic.html
r12984 r13662 10 10 </style> 11 11 12 <!-- required: the default dijit theme: --> 13 <link id="themeStyles" rel="stylesheet" href="../../../dijit/themes/tundra/tundra.css" /> 14 15 <!-- required: dojo.js --> 12 16 <script type="text/javascript" src="../../../dojo/dojo.js" 13 djConfig="parseOnLoad: false, isDebug: true"></script> 17 djConfig="isDebug: true, parseOnLoad: true"></script> 18 19 <!-- only needed for alternate theme testing: --> 14 20 <script type="text/javascript" src="../_testCommon.js"></script> 15 21 … … 35 41 </script> 36 42 </head> 37 <body >43 <body class="tundra"> 38 44 <h1 class="testTitle">Dijit Forest Store Programmatic Test</h1> 39 45 </body> -
dijit/trunk/tests/tree/test_Tree_v1.html
r12858 r13662 10 10 </style> 11 11 12 <!-- required: the default dijit theme: --> 13 <link id="themeStyles" rel="stylesheet" href="../../../dijit/themes/tundra/tundra.css" /> 14 15 <!-- required: dojo.js --> 12 16 <script type="text/javascript" src="../../../dojo/dojo.js" 13 djConfig="parseOnLoad: true, isDebug: true"></script> 17 djConfig="isDebug: true, parseOnLoad: true"></script> 18 19 <!-- only needed for alternate theme testing: --> 14 20 <script type="text/javascript" src="../_testCommon.js"></script> 15 21 … … 22 28 </script> 23 29 </head> 24 <body >30 <body class="tundra"> 25 31 26 32 <h1 class="testTitle">Dijit Tree Test</h1> -
dijit/trunk/tests/_testMatrix.php
r13659 r13662 9 9 @import "../../dojo/resources/dojo.css"; 10 10 @import "css/dijitTests.css"; 11 table tr > td { 12 text-align:left; 13 } 14 tr.top { 15 background:blue; 16 color:#fff; 17 } 18 tr.top th { 19 padding:6px; 20 } 21 tr.tests { 22 background:#666; 23 color:#fff; 24 } 25 tr.tests th { 26 text-align:center; 27 } 28 tr.spacer { 29 background:#dedede; 30 color:#666; 31 } 32 tr.spacer td { 33 padding:6px; 34 } 35 tr.testRow td { 36 text-align:center; 37 } 38 tr.testRow td.label { 39 text-align:left; 40 padding-left:15px; 41 } 42 tr.alt { 43 background:#ededed; 44 } 11 45 12 </style> 46 13 … … 58 25 59 26 printLinks(".", "Base Dijit Tests"); 60 printLinks("./form", "Dijit Form Tests");61 printLinks("./layout", "Dijit Layout Widget s");27 printLinks("./form", "Dijit Form Widget Tests"); 28 printLinks("./layout", "Dijit Layout Widget Tests"); 62 29 printLinks("./tree","Dijit Tree Tests"); 63 30