@@ -400,14 +400,34 @@ QUnit.test( "name", function( assert ) {
400
400
} ) ;
401
401
402
402
QUnit . test ( "comma-separated" , function ( assert ) {
403
- assert . expect ( 4 ) ;
403
+ assert . expect ( 10 ) ;
404
404
405
405
var fixture = jQuery ( "<div><h2><span></span></h2><div><p><span></span></p><p></p></div></div>" ) ;
406
406
407
407
assert . equal ( fixture . find ( "h2, div p" ) . filter ( "p" ) . length , 2 , "has to find two <p>" ) ;
408
408
assert . equal ( fixture . find ( "h2, div p" ) . filter ( "h2" ) . length , 1 , "has to find one <h2>" ) ;
409
409
assert . equal ( fixture . find ( "h2 , div p" ) . filter ( "p" ) . length , 2 , "has to find two <p>" ) ;
410
410
assert . equal ( fixture . find ( "h2 , div p" ) . filter ( "h2" ) . length , 1 , "has to find one <h2>" ) ;
411
+ assert . equal ( fixture . find ( "h2 ,div p" ) . filter ( "p" ) . length , 2 , "has to find two <p>" ) ;
412
+ assert . equal ( fixture . find ( "h2 ,div p" ) . filter ( "h2" ) . length , 1 , "has to find one <h2>" ) ;
413
+ assert . equal ( fixture . find ( "h2,div p" ) . filter ( "p" ) . length , 2 , "has to find two <p>" ) ;
414
+ assert . equal ( fixture . find ( "h2,div p" ) . filter ( "h2" ) . length , 1 , "has to find one <h2>" ) ;
415
+ assert . equal ( fixture . find ( "h2\t,\rdiv p" ) . filter ( "p" ) . length , 2 , "has to find two <p>" ) ;
416
+ assert . equal ( fixture . find ( "h2\t,\rdiv p" ) . filter ( "h2" ) . length , 1 , "has to find one <h2>" ) ;
417
+ } ) ;
418
+
419
+ QUnit . test ( "comma-separated, only supported natively (gh-5177)" , function ( assert ) {
420
+ assert . expect ( 5 ) ;
421
+
422
+ var fixture = jQuery ( "<div><input/><span></span></div>" ) ;
423
+
424
+ fixture . appendTo ( "#qunit-fixture" ) ;
425
+
426
+ assert . equal ( fixture . find ( "input:valid, span" ) . length , 2 , "has to find two elements" ) ;
427
+ assert . equal ( fixture . find ( "input:valid , span" ) . length , 2 , "has to find two elements" ) ;
428
+ assert . equal ( fixture . find ( "input:valid ,span" ) . length , 2 , "has to find two elements" ) ;
429
+ assert . equal ( fixture . find ( "input:valid,span" ) . length , 2 , "has to find two elements" ) ;
430
+ assert . equal ( fixture . find ( "input:valid\t,\rspan" ) . length , 2 , "has to find two elements" ) ;
411
431
} ) ;
412
432
413
433
QUnit . test ( "child and adjacent" , function ( assert ) {
0 commit comments