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:56 +0200 |
commit | b9272aaedcc63a37c859e07418bce4ad5a874571 (patch) | |
tree | a43a437baf3f8a36b6720bb76a431b7740d3baa6 /test | |
parent | 70025d0e651560d033c4d3cbc802389527fcf0b7 (diff) | |
download | jquery-b9272aaedcc63a37c859e07418bce4ad5a874571.tar.gz jquery-b9272aaedcc63a37c859e07418bce4ad5a874571.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.
(cherry-picked from 234a2d828021b6eb36d83d83cc30c5a09045e781)
Diffstat (limited to 'test')
-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 af2bd9238..f1ad75bb3 100644 --- a/test/unit/support.js +++ b/test/unit/support.js @@ -150,7 +150,7 @@ testIframeWithCallback( "reliableMarginLeft": true, "reliableMarginRight": true }; - } else if ( /9\.0(\.\d+|) safari/i.test( userAgent ) ) { + } else if ( /9(\.\d+|) safari/i.test( userAgent ) ) { expected = { "ajax": true, "boxSizingReliable": true, |