From ef332c7c7b14533a078860e3e1527acfa59a26a7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Micha=C5=82=20Go=C5=82=C4=99biowski?= Date: Sun, 14 Jun 2015 02:05:05 +0200 Subject: [PATCH] Tests: Correct a typo in the regex matching Safari 8 (cherry-picked from c17543fd3c14ff86c448dbb90f9fe1223661a73b) --- test/unit/support.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/support.js b/test/unit/support.js index 4d5ba5789..fcbf5600b 100644 --- a/test/unit/support.js +++ b/test/unit/support.js @@ -198,7 +198,7 @@ testIframeWithCallback( "Check CSP (https://developer.mozilla.org/en-US/docs/Sec "style": false, "submit": false }; - } else if ( /8.0(\.\d+|) safari/i.test( userAgent ) ) { + } else if ( /8\.0(\.\d+|) safari/i.test( userAgent ) ) { expected = { "ajax": true, "attributes": true, -- 2.39.5