Skip to content

Commit ee0fec0

Browse files
authored
Selector: Update Sizzle from 2.3.6 to 2.3.7
Fixes gh-5098 Closes gh-5135 Ref jquery/sizzle#486 Ref gh-5107
1 parent ed02835 commit ee0fec0

File tree

4 files changed

+65
-7
lines changed

4 files changed

+65
-7
lines changed

external/sizzle/dist/sizzle.js

+61-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
/*!
2-
* Sizzle CSS Selector Engine v2.3.6
2+
* Sizzle CSS Selector Engine v2.3.7
33
* https://sizzlejs.com/
44
*
55
* Copyright JS Foundation and other contributors
66
* Released under the MIT license
77
* https://js.foundation/
88
*
9-
* Date: 2021-02-16
9+
* Date: 2022-10-03
1010
*/
1111
( function( window ) {
1212
var i,
@@ -356,6 +356,27 @@ function Sizzle( selector, context, results, seed ) {
356356
}
357357

358358
try {
359+
360+
// `qSA` may not throw for unrecognized parts using forgiving parsing:
361+
// https://drafts.csswg.org/selectors/#forgiving-selector
362+
// like the `:has()` pseudo-class:
363+
// https://drafts.csswg.org/selectors/#relational
364+
// `CSS.supports` is still expected to return `false` then:
365+
// https://drafts.csswg.org/css-conditional-4/#typedef-supports-selector-fn
366+
// https://drafts.csswg.org/css-conditional-4/#dfn-support-selector
367+
if ( support.cssSupportsSelector &&
368+
369+
// eslint-disable-next-line no-undef
370+
!CSS.supports( "selector(" + newSelector + ")" ) ) {
371+
372+
// Support: IE 11+
373+
// Throw to get to the same code path as an error directly in qSA.
374+
// Note: once we only support browser supporting
375+
// `CSS.supports('selector(...)')`, we can most likely drop
376+
// the `try-catch`. IE doesn't implement the API.
377+
throw new Error();
378+
}
379+
359380
push.apply( results,
360381
newContext.querySelectorAll( newSelector )
361382
);
@@ -651,6 +672,31 @@ setDocument = Sizzle.setDocument = function( node ) {
651672
!el.querySelectorAll( ":scope fieldset div" ).length;
652673
} );
653674

675+
// Support: Chrome 105+, Firefox 104+, Safari 15.4+
676+
// Make sure forgiving mode is not used in `CSS.supports( "selector(...)" )`.
677+
//
678+
// `:is()` uses a forgiving selector list as an argument and is widely
679+
// implemented, so it's a good one to test against.
680+
support.cssSupportsSelector = assert( function() {
681+
/* eslint-disable no-undef */
682+
683+
return CSS.supports( "selector(*)" ) &&
684+
685+
// Support: Firefox 78-81 only
686+
// In old Firefox, `:is()` didn't use forgiving parsing. In that case,
687+
// fail this test as there's no selector to test against that.
688+
// `CSS.supports` uses unforgiving parsing
689+
document.querySelectorAll( ":is(:jqfake)" ) &&
690+
691+
// `*` is needed as Safari & newer Chrome implemented something in between
692+
// for `:has()` - it throws in `qSA` if it only contains an unsupported
693+
// argument but multiple ones, one of which is supported, are fine.
694+
// We want to play safe in case `:is()` gets the same treatment.
695+
!CSS.supports( "selector(:is(*,:jqfake))" );
696+
697+
/* eslint-enable */
698+
} );
699+
654700
/* Attributes
655701
---------------------------------------------------------------------- */
656702

@@ -917,6 +963,18 @@ setDocument = Sizzle.setDocument = function( node ) {
917963
} );
918964
}
919965

966+
if ( !support.cssSupportsSelector ) {
967+
968+
// Support: Chrome 105+, Safari 15.4+
969+
// `:has()` uses a forgiving selector list as an argument so our regular
970+
// `try-catch` mechanism fails to catch `:has()` with arguments not supported
971+
// natively like `:has(:contains("Foo"))`. Where supported & spec-compliant,
972+
// we now use `CSS.supports("selector(SELECTOR_TO_BE_TESTED)")` but outside
973+
// that, let's mark `:has` as buggy to always use jQuery traversal for
974+
// `:has()`.
975+
rbuggyQSA.push( ":has" );
976+
}
977+
920978
rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join( "|" ) );
921979
rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join( "|" ) );
922980

@@ -1719,7 +1777,7 @@ Expr = Sizzle.selectors = {
17191777
return elem.nodeName.toLowerCase() === "input" &&
17201778
elem.type === "text" &&
17211779

1722-
// Support: IE<8
1780+
// Support: IE <10 only
17231781
// New HTML5 attribute values (e.g., "search") appear with elem.type === "text"
17241782
( ( attr = elem.getAttribute( "type" ) ) == null ||
17251783
attr.toLowerCase() === "text" );

0 commit comments

Comments
 (0)