aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichał Gołębiowski <m.goleb@gmail.com>2016-05-02 22:49:17 +0200
committerMichał Gołębiowski <m.goleb@gmail.com>2016-05-02 22:49:17 +0200
commit234a2d828021b6eb36d83d83cc30c5a09045e781 (patch)
treed40af1913abda61e5ad71b5e40b07a2f597964c3
parent356a3bccb0e7468a2c8ce7d8c9c6cd0c5d436b8b (diff)
downloadjquery-234a2d828021b6eb36d83d83cc30c5a09045e781.tar.gz
jquery-234a2d828021b6eb36d83d83cc30c5a09045e781.zip
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.
-rw-r--r--test/unit/support.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/support.js b/test/unit/support.js
index ff5d66f87..88aa49e55 100644
--- a/test/unit/support.js
+++ b/test/unit/support.js
@@ -130,7 +130,7 @@ testIframe(
"radioValue": true,
"reliableMarginLeft": true
};
- } else if ( /9\.0(\.\d+|) safari/i.test( userAgent ) ) {
+ } else if ( /9(\.\d+|) safari/i.test( userAgent ) ) {
expected = {
"ajax": true,
"boxSizingReliable": true,