-
Notifications
You must be signed in to change notification settings - Fork 20.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Selector: Use jQuery :has
if CSS.supports(selector(...))
non-compliant
#5107
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,38 @@ | ||
import isIE from "../var/isIE.js"; | ||
import whitespace from "../var/whitespace.js"; | ||
import support from "./support.js"; | ||
|
||
var rbuggyQSA = isIE && new RegExp( | ||
var rbuggyQSA = []; | ||
|
||
// Support: IE 9 - 11+ | ||
// IE's :disabled selector does not pick up the children of disabled fieldsets | ||
":enabled|:disabled|" + | ||
if ( isIE ) { | ||
rbuggyQSA.push( | ||
|
||
// Support: IE 11+ | ||
// IE 11 doesn't find elements on a `[name='']` query in some cases. | ||
// Adding a temporary attribute to the document before the selection works | ||
// around the issue. | ||
"\\[" + whitespace + "*name" + whitespace + "*=" + | ||
whitespace + "*(?:''|\"\")" | ||
// Support: IE 9 - 11+ | ||
// IE's :disabled selector does not pick up the children of disabled fieldsets | ||
":enabled", | ||
":disabled", | ||
|
||
); | ||
// Support: IE 11+ | ||
// IE 11 doesn't find elements on a `[name='']` query in some cases. | ||
// Adding a temporary attribute to the document before the selection works | ||
// around the issue. | ||
"\\[" + whitespace + "*name" + whitespace + "*=" + | ||
whitespace + "*(?:''|\"\")" | ||
); | ||
} | ||
|
||
if ( !support.cssSupportsSelector ) { | ||
|
||
// Support: Chrome 105+, Safari 15.4+ | ||
// `:has()` uses a forgiving selector list as an argument so our regular | ||
// `try-catch` mechanism fails to catch `:has()` with arguments not supported | ||
// natively like `:has(:contains("Foo"))`. Where supported & spec-compliant, | ||
// we now use `CSS.supports("selector(SELECTOR_TO_BE_TESTED)")` but outside | ||
// that, let's mark `:has` as buggy to always use jQuery traversal for | ||
// `:has()`. | ||
rbuggyQSA.push( ":has" ); | ||
} | ||
|
||
rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join( "|" ) ); | ||
|
||
export default rbuggyQSA; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import support from "../var/support.js"; | ||
|
||
try { | ||
/* eslint-disable no-undef */ | ||
|
||
// Support: Chrome 105+, Firefox 104+, Safari 15.4+ | ||
// Make sure forgiving mode is not used in `CSS.supports( "selector(...)" )`. | ||
// | ||
// `:is()` uses a forgiving selector list as an argument and is widely | ||
// implemented, so it's a good one to test against. | ||
support.cssSupportsSelector = CSS.supports( "selector(*)" ) && | ||
|
||
// `*` is needed as Safari & newer Chrome implemented something in between | ||
// for `:has()` - it throws in `qSA` if it only contains an unsupported | ||
// argument but multiple ones, one of which is supported, are fine. | ||
// We want to play safe in case `:is()` gets the same treatment. | ||
!CSS.supports( "selector(:is(*,:jqfake))" ); | ||
|
||
/* eslint-enable */ | ||
} catch ( e ) { | ||
support.cssSupportsSelector = false; | ||
} | ||
|
||
export default support; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is actually not just targeted at IE but at all browsers where CSS.supports is buggy. I should update the comment.