From 9d41fc1466f0e989c2913b737a7abe0664c8a13f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Micha=C5=82=20Go=C5=82=C4=99biowski?= Date: Mon, 2 May 2016 22:49:17 +0200 Subject: [PATCH] Tests: take Safari 9.1 into account Safari 9.1 shares its support test results with Safari 9.0 but it's been excluded from the regex catching Safari 9.0. This has been fixed. (cherry-picked from 234a2d828021b6eb36d83d83cc30c5a09045e781) --- 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 46f487115..155ebd54b 100644 --- a/test/unit/support.js +++ b/test/unit/support.js @@ -416,7 +416,7 @@ testIframeWithCallback( "submit": true, "tbody": true }; - } else if ( /9\.0(\.\d+|) safari/i.test( userAgent ) ) { + } else if ( /9(\.\d+|) safari/i.test( userAgent ) ) { expected = { "ajax": true, "appendChecked": true, -- 2.39.5