mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Tests: Really fix tests in IE 8 this time
IE 8 doesn't have indexOf on arrays. Also, one toLowerCase() was missing. Oops.
This commit is contained in:
parent
f709a284e2
commit
1b48eef4ca
@ -271,7 +271,7 @@ QUnit.config.autostart = false;
|
||||
this.loadTests = function() {
|
||||
var loadSwarm,
|
||||
url = window.location.search,
|
||||
basicTests = url.substring( 1 ).split( "&" ).indexOf( "module=basic" ) > -1;
|
||||
basicTests = jQuery.inArray( "module=basic", url.substring( 1 ).split( "&" ) ) > -1;
|
||||
|
||||
url = decodeURIComponent( url.slice( url.indexOf( "swarmURL=" ) + "swarmURL=".length ) );
|
||||
loadSwarm = url && url.indexOf( "http" ) === 0;
|
||||
|
@ -200,7 +200,7 @@ QUnit.test( "manipulation", function( assert ) {
|
||||
|
||||
// Support: IE 8 only
|
||||
// IE 8 prints tag names in upper case.
|
||||
elem1.html(),
|
||||
elem1.html().toLowerCase(),
|
||||
"<div></div><b></b><span></span><a></a>",
|
||||
".after/.before"
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user