Forgot to merge in some of the new tests from Sizzle.
This commit is contained in:
parent
cc66e6affe
commit
4694e537bc
|
@ -113,6 +113,13 @@
|
||||||
</form>
|
</form>
|
||||||
<table id="table"></table>
|
<table id="table"></table>
|
||||||
|
|
||||||
|
<form id="name-tests">
|
||||||
|
<!-- Inputs with a grouped name attribute. -->
|
||||||
|
<input name="types[]" id="types_all" type="checkbox" value="all" />
|
||||||
|
<input name="types[]" id="types_anime" type="checkbox" value="anime" />
|
||||||
|
<input name="types[]" id="types_movie" type="checkbox" value="movie" />
|
||||||
|
</form>
|
||||||
|
|
||||||
<div id="fx-queue">
|
<div id="fx-queue">
|
||||||
<div id="fadein" class='chain test'>fadeIn<div>fadeIn</div></div>
|
<div id="fadein" class='chain test'>fadeIn<div>fadeIn</div></div>
|
||||||
<div id="fadeout" class='chain test out'>fadeOut<div>fadeOut</div></div>
|
<div id="fadeout" class='chain test out'>fadeOut<div>fadeOut</div></div>
|
||||||
|
|
|
@ -1379,7 +1379,7 @@ test("siblings([String])", function() {
|
||||||
isSet( jQuery("#en").siblings().get(), q("sndp", "sap"), "Check for siblings" );
|
isSet( jQuery("#en").siblings().get(), q("sndp", "sap"), "Check for siblings" );
|
||||||
isSet( jQuery("#sndp").siblings(":has(code)").get(), q("sap"), "Check for filtered siblings (has code child element)" );
|
isSet( jQuery("#sndp").siblings(":has(code)").get(), q("sap"), "Check for filtered siblings (has code child element)" );
|
||||||
isSet( jQuery("#sndp").siblings(":has(a)").get(), q("en", "sap"), "Check for filtered siblings (has anchor child element)" );
|
isSet( jQuery("#sndp").siblings(":has(a)").get(), q("en", "sap"), "Check for filtered siblings (has anchor child element)" );
|
||||||
isSet( jQuery("#foo").siblings("form, b").get(), q("form", "lengthtest", "testForm", "floatTest"), "Check for multiple filters" );
|
isSet( jQuery("#foo").siblings("form, b").get(), q("form", "lengthtest", "name-tests", "testForm", "floatTest"), "Check for multiple filters" );
|
||||||
var set = document.querySelectorAll ? q("en", "sap", "sndp") : q("sndp", "sap", "en");
|
var set = document.querySelectorAll ? q("en", "sap", "sndp") : q("sndp", "sap", "en");
|
||||||
isSet( jQuery("#en, #sndp").siblings().get(), set, "Check for unique results from siblings" );
|
isSet( jQuery("#en, #sndp").siblings().get(), set, "Check for unique results from siblings" );
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue