|
1 | 1 | /*!
|
2 |
| - * Sizzle CSS Selector Engine v2.3.6 |
| 2 | + * Sizzle CSS Selector Engine v2.3.7 |
3 | 3 | * https://sizzlejs.com/
|
4 | 4 | *
|
5 | 5 | * Copyright JS Foundation and other contributors
|
6 | 6 | * Released under the MIT license
|
7 | 7 | * https://js.foundation/
|
8 | 8 | *
|
9 |
| - * Date: 2021-02-16 |
| 9 | + * Date: 2022-10-03 |
10 | 10 | */
|
11 | 11 | ( function( window ) {
|
12 | 12 | var i,
|
@@ -356,6 +356,27 @@ function Sizzle( selector, context, results, seed ) {
|
356 | 356 | }
|
357 | 357 |
|
358 | 358 | 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 | + |
359 | 380 | push.apply( results,
|
360 | 381 | newContext.querySelectorAll( newSelector )
|
361 | 382 | );
|
@@ -651,6 +672,31 @@ setDocument = Sizzle.setDocument = function( node ) {
|
651 | 672 | !el.querySelectorAll( ":scope fieldset div" ).length;
|
652 | 673 | } );
|
653 | 674 |
|
| 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 | + |
654 | 700 | /* Attributes
|
655 | 701 | ---------------------------------------------------------------------- */
|
656 | 702 |
|
@@ -917,6 +963,18 @@ setDocument = Sizzle.setDocument = function( node ) {
|
917 | 963 | } );
|
918 | 964 | }
|
919 | 965 |
|
| 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 | + |
920 | 978 | rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join( "|" ) );
|
921 | 979 | rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join( "|" ) );
|
922 | 980 |
|
@@ -1719,7 +1777,7 @@ Expr = Sizzle.selectors = {
|
1719 | 1777 | return elem.nodeName.toLowerCase() === "input" &&
|
1720 | 1778 | elem.type === "text" &&
|
1721 | 1779 |
|
1722 |
| - // Support: IE<8 |
| 1780 | + // Support: IE <10 only |
1723 | 1781 | // New HTML5 attribute values (e.g., "search") appear with elem.type === "text"
|
1724 | 1782 | ( ( attr = elem.getAttribute( "type" ) ) == null ||
|
1725 | 1783 | attr.toLowerCase() === "text" );
|
|
0 commit comments