diff --git a/test/unit/support.js b/test/unit/support.js index 2f171a675..efd4f820b 100644 --- a/test/unit/support.js +++ b/test/unit/support.js @@ -131,7 +131,7 @@ testIframeWithCallback( "Check CSP (https://developer.mozilla.org/en-US/docs/Sec "radioValue": false, "reliableMarginRight": true }; - } else if ( /7\.0\.\d+ safari/i.test( userAgent ) ) { + } else if ( /7\.0(\.\d+|) safari/i.test( userAgent ) ) { expected = { "ajax": true, "boxSizingReliable": true, @@ -147,7 +147,7 @@ testIframeWithCallback( "Check CSP (https://developer.mozilla.org/en-US/docs/Sec "radioValue": true, "reliableMarginRight": true }; - } else if ( /6\.0\.\d+ safari/i.test( userAgent ) ) { + } else if ( /6\.0(\.\d+|) safari/i.test( userAgent ) ) { expected = { "ajax": true, "boxSizingReliable": true, @@ -163,7 +163,7 @@ testIframeWithCallback( "Check CSP (https://developer.mozilla.org/en-US/docs/Sec "radioValue": true, "reliableMarginRight": true }; - } else if ( /5\.1\.\d+ safari/i.test( userAgent ) ) { + } else if ( /5\.1(\.\d+|) safari/i.test( userAgent ) ) { expected = { "ajax":true, "boxSizingReliable": true,