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:50:25 +0200 |
commit | 9d41fc1466f0e989c2913b737a7abe0664c8a13f (patch) | |
tree | dbaea798cdbc55d8d2ff7f9f0f22ff68e3c6add6 /test | |
parent | 1e60327e3120be5ac84dabdf74653f5cf940739a (diff) | |
download | jquery-9d41fc1466f0e989c2913b737a7abe0664c8a13f.tar.gz jquery-9d41fc1466f0e989c2913b737a7abe0664c8a13f.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 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, |