diff options
author | Michał Gołębiowski <m.goleb@gmail.com> | 2016-05-02 22:49:17 +0200 |
---|---|---|
committer | Michał Gołębiowski <m.goleb@gmail.com> | 2016-05-02 22:49:17 +0200 |
commit | 234a2d828021b6eb36d83d83cc30c5a09045e781 (patch) | |
tree | d40af1913abda61e5ad71b5e40b07a2f597964c3 | |
parent | 356a3bccb0e7468a2c8ce7d8c9c6cd0c5d436b8b (diff) | |
download | jquery-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.js | 2 |
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, |