diff --git a/test/unit/support.js b/test/unit/support.js index abe2b66b2..24ca830e2 100644 --- a/test/unit/support.js +++ b/test/unit/support.js @@ -126,7 +126,7 @@ testIframe( "reliableMarginLeft": true, "scrollboxSize": true }, - safari_11: { + safari: { "ajax": true, "boxSizingReliable": true, "checkClone": true, @@ -194,7 +194,7 @@ testIframe( "reliableMarginLeft": false, "scrollboxSize": true }, - ios_11: { + ios: { "ajax": true, "boxSizingReliable": true, "checkClone": true, @@ -292,16 +292,16 @@ testIframe( // Catches Chrome on Android as well (i.e. the default // Android browser on Android >= 4.4). expected = expectedMap.chrome; - } else if ( /\b11\.\d(\.\d+)* safari/i.test( userAgent ) ) { - expected = expectedMap.safari_11; + } else if ( /\b(?:11|12)\.\d(\.\d+)* safari/i.test( userAgent ) ) { + expected = expectedMap.safari; } else if ( /\b(?:9|10)\.\d(\.\d+)* safari/i.test( userAgent ) ) { expected = expectedMap.safari_9_10; } else if ( /firefox\/(?:52|60)/i.test( userAgent ) ) { expected = expectedMap.firefox_60; } else if ( /firefox/i.test( userAgent ) ) { expected = expectedMap.firefox; - } else if ( /(?:iphone|ipad);.*(?:iphone)? os 11_/i.test( userAgent ) ) { - expected = expectedMap.ios_11; + } else if ( /(?:iphone|ipad);.*(?:iphone)? os (?:11|12)_/i.test( userAgent ) ) { + expected = expectedMap.ios; } else if ( /iphone os (?:9|10)_/i.test( userAgent ) ) { expected = expectedMap.ios_9_10; } else if ( /iphone os 8_/i.test( userAgent ) ) {