Show
Ignore:
Timestamp:
02/26/08 04:19:01 (11 months ago)
Author:
bill
Message:

Do CSS imports before <script> tags, in order to lessen chance that widgets instantiate before CSS has finished loading.
I believe this fixes #5626, #5591.
Also removed a few obsolete tests.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • dijit/trunk/tests/form/test_CheckBox.html

    r12482 r12703  
    55        <title>CheckBox Widget Demo</title> 
    66 
     7        <style type="text/css"> 
     8                @import "../../../dojo/resources/dojo.css"; 
     9                @import "../css/dijitTests.css"; 
     10 
     11                label { margin-right: 0.80em; } 
     12        </style> 
     13         
    714        <script type="text/javascript" src="../../../dojo/dojo.js" 
    815                djConfig="isDebug: true, parseOnLoad: true"></script> 
     
    4047                }); 
    4148        </script> 
    42         <style type="text/css"> 
    43                 @import "../../../dojo/resources/dojo.css"; 
    44                 @import "../css/dijitTests.css"; 
    45  
    46                 label { margin-right: 0.80em; } 
    47         </style> 
    4849</head> 
    4950<body>