Changeset 13662

Show
Ignore:
Timestamp:
05/10/08 06:08:30 (6 days ago)
Author:
dante
Message:

refs #6664 - missed tree innard tests, and removes duplicated styles from matrix.

Location:
dijit/trunk/tests
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • dijit/trunk/tests/tree/test_Tree_Programmatic.html

    r12984 r13662  
    1010        </style> 
    1111 
     12        <!-- required: the default dijit theme: --> 
     13        <link id="themeStyles" rel="stylesheet" href="../../../dijit/themes/tundra/tundra.css" /> 
     14 
     15        <!-- required: dojo.js --> 
    1216        <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: --> 
    1420        <script type="text/javascript" src="../_testCommon.js"></script> 
    1521 
     
    3541        </script> 
    3642</head> 
    37 <body> 
     43<body class="tundra"> 
    3844        <h1 class="testTitle">Dijit Forest Store Programmatic Test</h1> 
    3945</body> 
  • dijit/trunk/tests/tree/test_Tree_v1.html

    r12858 r13662  
    1010        </style> 
    1111 
     12        <!-- required: the default dijit theme: --> 
     13        <link id="themeStyles" rel="stylesheet" href="../../../dijit/themes/tundra/tundra.css" /> 
     14 
     15        <!-- required: dojo.js --> 
    1216        <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: --> 
    1420        <script type="text/javascript" src="../_testCommon.js"></script> 
    1521 
     
    2228        </script> 
    2329</head> 
    24 <body> 
     30<body class="tundra"> 
    2531 
    2632        <h1 class="testTitle">Dijit Tree Test</h1> 
  • dijit/trunk/tests/_testMatrix.php

    r13659 r13662  
    99                @import "../../dojo/resources/dojo.css"; 
    1010                @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 
    4512        </style> 
    4613 
     
    5825 
    5926                        printLinks(".", "Base Dijit Tests"); 
    60                         printLinks("./form", "Dijit Form Tests"); 
    61                         printLinks("./layout", "Dijit Layout Widgets"); 
     27                        printLinks("./form", "Dijit Form Widget Tests"); 
     28                        printLinks("./layout", "Dijit Layout Widget Tests"); 
    6229                        printLinks("./tree","Dijit Tree Tests"); 
    6330