File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -271,7 +271,7 @@ QUnit.config.autostart = false;
271271this . loadTests = function ( ) {
272272 var loadSwarm ,
273273 url = window . location . search ,
274- basicTests = url . substring ( 1 ) . split ( "&" ) . indexOf ( "module=basic" ) > - 1 ;
274+ basicTests = jQuery . inArray ( "module=basic" , url . substring ( 1 ) . split ( "&" ) ) > - 1 ;
275275
276276 url = decodeURIComponent ( url . slice ( url . indexOf ( "swarmURL=" ) + "swarmURL=" . length ) ) ;
277277 loadSwarm = url && url . indexOf ( "http" ) === 0 ;
Original file line number Diff line number Diff line change @@ -200,7 +200,7 @@ QUnit.test( "manipulation", function( assert ) {
200200
201201 // Support: IE 8 only
202202 // IE 8 prints tag names in upper case.
203- elem1 . html ( ) ,
203+ elem1 . html ( ) . toLowerCase ( ) ,
204204 "<div></div><b></b><span></span><a></a>" ,
205205 ".after/.before"
206206 ) ;
You can’t perform that action at this time.
0 commit comments