diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2023-04-05 00:25:20 +0200 |
---|---|---|
committer | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2023-04-05 00:34:39 +0200 |
commit | 89ef81f86f8f371154e9fd3173be5fb57cb72d5e (patch) | |
tree | 1e41254bed136b8ddb296d6a64ebb7cf922d4d3c /src/selector/support.js | |
parent | bce13b72c1753e16cc0db53ebf0f0456bdcf6b48 (diff) | |
download | jquery-89ef81f86f8f371154e9fd3173be5fb57cb72d5e.tar.gz jquery-89ef81f86f8f371154e9fd3173be5fb57cb72d5e.zip |
Tests: Indicate Chrome 112 & Safari 16.4 pass the cssHas support test
Chrome 112 & Safari 16.4 introduce two changes:
* `:has()` is non-forgiving
* `CSS.supports( "selector(...)" )` parses everything in a non-forgiving way
We no longer care about the latter but the former means the `cssHas` support
test now passes.
Closes gh-5225
Diffstat (limited to 'src/selector/support.js')
-rw-r--r-- | src/selector/support.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/selector/support.js b/src/selector/support.js index 396e0e046..572038747 100644 --- a/src/selector/support.js +++ b/src/selector/support.js @@ -1,8 +1,8 @@ import document from "../var/document.js"; import support from "../var/support.js"; -// Support: Chrome 105 - 110+, Safari 15.4 - 16.3+ -// Make sure the the `:has()` argument is parsed unforgivingly. +// Support: Chrome 105 - 111 only, Safari 15.4 - 16.3 only +// Make sure the `:has()` argument is parsed unforgivingly. // We include `*` in the test to detect buggy implementations that are // _selectively_ forgiving (specifically when the list includes at least // one valid selector). |