From 3f3f458974fe0bdccfe9042c9503fd2d03e2f6ff Mon Sep 17 00:00:00 2001 From: =?utf8?q?Micha=C5=82=20Go=C5=82e=CC=A8biowski?= Date: Wed, 22 Jan 2014 21:49:10 +0100 Subject: [PATCH] Tests: fix Safari userAgent detection --- test/unit/support.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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, -- 2.39.5