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;
271
271
this . loadTests = function ( ) {
272
272
var loadSwarm ,
273
273
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 ;
275
275
276
276
url = decodeURIComponent ( url . slice ( url . indexOf ( "swarmURL=" ) + "swarmURL=" . length ) ) ;
277
277
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 ) {
200
200
201
201
// Support: IE 8 only
202
202
// IE 8 prints tag names in upper case.
203
- elem1 . html ( ) ,
203
+ elem1 . html ( ) . toLowerCase ( ) ,
204
204
"<div></div><b></b><span></span><a></a>" ,
205
205
".after/.before"
206
206
) ;
You can’t perform that action at this time.
0 commit comments