@@ -415,14 +415,34 @@ QUnit.test( "name", function( assert ) {
415
415
} ) ;
416
416
417
417
QUnit . test ( "comma-separated" , function ( assert ) {
418
- assert . expect ( 4 ) ;
418
+ assert . expect ( 10 ) ;
419
419
420
420
var fixture = jQuery ( "<div><h2><span></span></h2><div><p><span></span></p><p></p></div></div>" ) ;
421
421
422
422
assert . equal ( fixture . find ( "h2, div p" ) . filter ( "p" ) . length , 2 , "has to find two <p>" ) ;
423
423
assert . equal ( fixture . find ( "h2, div p" ) . filter ( "h2" ) . length , 1 , "has to find one <h2>" ) ;
424
424
assert . equal ( fixture . find ( "h2 , div p" ) . filter ( "p" ) . length , 2 , "has to find two <p>" ) ;
425
425
assert . equal ( fixture . find ( "h2 , div p" ) . filter ( "h2" ) . length , 1 , "has to find one <h2>" ) ;
426
+ assert . equal ( fixture . find ( "h2 ,div p" ) . filter ( "p" ) . length , 2 , "has to find two <p>" ) ;
427
+ assert . equal ( fixture . find ( "h2 ,div p" ) . filter ( "h2" ) . length , 1 , "has to find one <h2>" ) ;
428
+ assert . equal ( fixture . find ( "h2,div p" ) . filter ( "p" ) . length , 2 , "has to find two <p>" ) ;
429
+ assert . equal ( fixture . find ( "h2,div p" ) . filter ( "h2" ) . length , 1 , "has to find one <h2>" ) ;
430
+ assert . equal ( fixture . find ( "h2\t,\rdiv p" ) . filter ( "p" ) . length , 2 , "has to find two <p>" ) ;
431
+ assert . equal ( fixture . find ( "h2\t,\rdiv p" ) . filter ( "h2" ) . length , 1 , "has to find one <h2>" ) ;
432
+ } ) ;
433
+
434
+ QUnit . test ( "comma-separated, only supported natively (gh-5177)" , function ( assert ) {
435
+ assert . expect ( 5 ) ;
436
+
437
+ var fixture = jQuery ( "<div><input/><span></span></div>" ) ;
438
+
439
+ fixture . appendTo ( "#qunit-fixture" ) ;
440
+
441
+ assert . equal ( fixture . find ( "input:valid, span" ) . length , 2 , "has to find two elements" ) ;
442
+ assert . equal ( fixture . find ( "input:valid , span" ) . length , 2 , "has to find two elements" ) ;
443
+ assert . equal ( fixture . find ( "input:valid ,span" ) . length , 2 , "has to find two elements" ) ;
444
+ assert . equal ( fixture . find ( "input:valid,span" ) . length , 2 , "has to find two elements" ) ;
445
+ assert . equal ( fixture . find ( "input:valid\t,\rspan" ) . length , 2 , "has to find two elements" ) ;
426
446
} ) ;
427
447
428
448
QUnit . test ( "child and adjacent" , function ( assert ) {
0 commit comments