From: Michał Gołębiowski Date: Mon, 2 May 2016 20:49:17 +0000 (+0200) Subject: Tests: take Safari 9.1 into account X-Git-Tag: 1.12.4~8 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=9d41fc1466f0e989c2913b737a7abe0664c8a13f;p=jquery.git 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) --- 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,