"reliableMarginLeft": true,
"scrollboxSize": true
},
- safari_11: {
+ safari: {
"ajax": true,
"boxSizingReliable": true,
"checkClone": true,
"reliableMarginLeft": false,
"scrollboxSize": true
},
- ios_11: {
+ ios: {
"ajax": true,
"boxSizingReliable": true,
"checkClone": true,
// 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 ) ) {