Changeset 13721
- Timestamp:
- 05/13/08 03:37:25 (2 months ago)
- Location:
- dijit/trunk/tests
- Files:
-
- 3 modified
-
css/dijitTests.css (modified) (1 diff)
-
form/test_ComboBox.html (modified) (5 diffs)
-
form/test_Spinner.html (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
dijit/trunk/tests/css/dijitTests.css
r13660 r13721 74 74 } 75 75 76 body .medium {77 font-size: larger; /* help test widget sizing */78 }79 80 76 #testMatrix { 81 77 width:100%; -
dijit/trunk/tests/form/test_ComboBox.html
r13711 r13721 83 83 name="state1" 84 84 dojoType="dijit.form.ComboBox" 85 class="medium"86 85 style="width:50%;font-size:200%;font-family:Courier;" 87 86 name="foo.bar1" … … 169 168 <input dojoType="dijit.form.ComboBox" 170 169 value="California" 171 class="medium"172 170 store="stateStore" 173 171 searchAttr="name" … … 182 180 <input dojoType="dijit.form.ComboBox" 183 181 value="dijit.Editor" 184 class="medium"185 182 store="dijitStore" 186 183 searchAttr="className" … … 197 194 dojoType="dijit.form.ComboBox" 198 195 value="California" 199 class="medium"200 196 store="stateStore" 201 197 searchAttr="name" … … 215 211 <input dojoType="dijit.form.ComboBox" 216 212 value="" 217 class="medium"218 213 store="stateStore" 219 214 searchAttr="name" -
dijit/trunk/tests/form/test_Spinner.html
r13711 r13721 8 8 @import "../../../dojo/resources/dojo.css"; 9 9 @import "../css/dijitTests.css"; 10 11 body .bigFont { 12 font-size: larger; /* help test widget sizing */ 13 } 14 10 15 </style> 11 16 … … 34 39 <h1>number spinner</h1> 35 40 <br> 36 initial value=900, no delta specified, no min specified, max=1550, onChange captured <br>41 initial value=900, no delta specified, no min specified, max=1550, onChange captured, big font<br> 37 42 <label for="integerspinner1">Spinbox #1: </label><br> 38 43 <input dojoType="dijit.form.NumberSpinner" 39 44 onChange="dojo.byId('oc1').value=arguments[0]" 40 45 value="900" 41 class=" medium"46 class="bigFont" 42 47 constraints="{max:1550,places:0}" 43 48 name="integerspinner1"