diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2021-04-13 22:11:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-13 22:11:45 +0200 |
commit | 50e8e84621ff7a314fca253ce73f0519322d8a4d (patch) | |
tree | 34790bf78da7578b05b15f6c59b21f196b09503c | |
parent | 345cd22e5664655ed315958ed2056610607c12ef (diff) | |
download | jquery-50e8e84621ff7a314fca253ce73f0519322d8a4d.tar.gz jquery-50e8e84621ff7a314fca253ce73f0519322d8a4d.zip |
Tests: Make more tests run natively in Chrome & Firefox
Chrome & Firefox now support complex `:not()` selectors so those test can run
in them even without custom jQuery selector code. In the past, it was only
possible in Safari, now we only need to exclude IE.
Closes gh-4864
-rw-r--r-- | test/unit/selector.js | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/test/unit/selector.js b/test/unit/selector.js index b11b801c6..41d9d0f70 100644 --- a/test/unit/selector.js +++ b/test/unit/selector.js @@ -1137,14 +1137,14 @@ QUnit.test( "pseudo - :not", function( assert ) { assert.t( ":not() failing interior", "#qunit-fixture p:not(.foo)", [ "firstp", "ap", "sndp", "en", "sap", "first" ] ); assert.t( ":not() failing interior", "#qunit-fixture p:not(#blargh)", [ "firstp", "ap", "sndp", "en", "sap", "first" ] ); - if ( QUnit.jQuerySelectors || this.safari ) { + if ( QUnit.jQuerySelectors || !QUnit.isIE ) { assert.t( ":not() failing interior", "#qunit-fixture p:not(div.foo)", [ "firstp", "ap", "sndp", "en", "sap", "first" ] ); assert.t( ":not() failing interior", "#qunit-fixture p:not(p.foo)", [ "firstp", "ap", "sndp", "en", "sap", "first" ] ); assert.t( ":not() failing interior", "#qunit-fixture p:not(div#blargh)", [ "firstp", "ap", "sndp", "en", "sap", "first" ] ); assert.t( ":not() failing interior", "#qunit-fixture p:not(p#blargh)", [ "firstp", "ap", "sndp", "en", "sap", "first" ] ); } else { - // Support: Chrome 75+, Firefox 67+ - // Chrome/Firefox don't support `:not(complex selector)`. + // Support: IE 11+ + // IE doesn't support `:not(complex selector)`. assert.ok( "skip", ":not(complex selector) not supported in selector-native" ); assert.ok( "skip", ":not(complex selector) not supported in selector-native" ); assert.ok( "skip", ":not(complex selector) not supported in selector-native" ); @@ -1156,15 +1156,15 @@ QUnit.test( "pseudo - :not", function( assert ) { assert.t( ":not Multiple", "#qunit-fixture p:not( p )", [] ); assert.t( ":not Multiple", "p:not(p)", [] ); - if ( QUnit.jQuerySelectors || this.safari ) { + if ( QUnit.jQuerySelectors || !QUnit.isIE ) { assert.t( ":not Multiple", "#qunit-fixture p:not(a, b)", [ "firstp", "ap", "sndp", "en", "sap", "first" ] ); assert.t( ":not Multiple", "#qunit-fixture p:not(a, b, div)", [ "firstp", "ap", "sndp", "en", "sap", "first" ] ); assert.t( ":not Multiple", "p:not(a,p)", [] ); assert.t( ":not Multiple", "p:not(p,a)", [] ); assert.t( ":not Multiple", "p:not(a,p,b)", [] ); } else { - // Support: Chrome 75+, Firefox 67+ - // Chrome/Firefox don't support `:not(complex selector)`. + // Support: IE 11+ + // IE doesn't support `:not(complex selector)`. assert.ok( "skip", ":not(complex selector) not supported in selector-native" ); assert.ok( "skip", ":not(complex selector) not supported in selector-native" ); assert.ok( "skip", ":not(complex selector) not supported in selector-native" ); @@ -1189,11 +1189,11 @@ QUnit.test( "pseudo - :not", function( assert ) { assert.t( ":not() Multiple Class", "#foo a:not(.blog)", [ "yahoo", "anchor2" ] ); assert.t( ":not() Multiple Class", "#foo a:not(.link)", [ "yahoo", "anchor2" ] ); - if ( QUnit.jQuerySelectors || this.safari ) { + if ( QUnit.jQuerySelectors || !QUnit.isIE ) { assert.t( ":not() Multiple Class", "#foo a:not(.blog.link)", [ "yahoo", "anchor2" ] ); } else { - // Support: Chrome 75+, Firefox 67+ - // Chrome/Firefox don't support `:not(complex selector)`. + // Support: IE 11+ + // IE doesn't support `:not(complex selector)`. assert.ok( "skip", ":not(complex selector) not supported in selector-native" ); } |