Skip to content

Commit 6b2094d

Browse files
committed
Tests: Skip the native :valid tests in IE 9
A newly added test making sure a native selector containing the `:valid` pseudo works when no jQuery-specific selectors are used was failing in IE 9 as that browser lacks support for this pseudo. This commit disables that test in IE 9. Ref gh-5178
1 parent 848de62 commit 6b2094d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

test/unit/selector.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,11 @@ QUnit.test( "comma-separated", function( assert ) {
431431
assert.equal( fixture.find( "h2\t,\rdiv p" ).filter( "h2" ).length, 1, "has to find one <h2>" );
432432
} );
433433

434-
QUnit.test( "comma-separated, only supported natively (gh-5177)", function( assert ) {
434+
// Support: IE 9 only
435+
// IE 9 doesn't support the `:valid` pseudo natively; skip the test there.
436+
QUnit[
437+
/msie 9\.0/i.test( window.navigator.userAgent ) ? "skip" : "test"
438+
]( "comma-separated, only supported natively (gh-5177)", function( assert ) {
435439
assert.expect( 5 );
436440

437441
var fixture = jQuery( "<div><input/><span></span></div>" );

0 commit comments

Comments
 (0)