Drop support for iOS < 15.7 (#19847)
https://meta.discourse.org/t/224747
This commit is contained in:
@@ -1,7 +1,14 @@
|
||||
/* eslint-disable no-var */ // `let` is not supported in very old browsers
|
||||
|
||||
(function () {
|
||||
if (!window.WeakMap || !window.Promise || typeof globalThis === "undefined") {
|
||||
if (
|
||||
!window.WeakMap ||
|
||||
!window.Promise ||
|
||||
typeof globalThis === "undefined" ||
|
||||
!String.prototype.replaceAll ||
|
||||
!CSS.supports ||
|
||||
!CSS.supports("aspect-ratio: 1")
|
||||
) {
|
||||
window.unsupportedBrowser = true;
|
||||
} else {
|
||||
// Some implementations of `WeakMap.prototype.has` do not accept false
|
||||
|
||||
Reference in New Issue
Block a user