diff options
author | Michał Gołębiowski <m.goleb@gmail.com> | 2014-03-13 01:48:35 +0100 |
---|---|---|
committer | Michał Gołębiowski <m.goleb@gmail.com> | 2014-03-13 01:48:35 +0100 |
commit | 412555a0b001d19e2dedf4c3c23a794ad8fa398c (patch) | |
tree | 792a5ef2172a37525e63d5721b2ce2f03639e430 /test | |
parent | 59c4adbaffbf2eee167021e549b1f461893d624b (diff) | |
download | jquery-412555a0b001d19e2dedf4c3c23a794ad8fa398c.tar.gz jquery-412555a0b001d19e2dedf4c3c23a794ad8fa398c.zip |
Support: Make the support matrix for iOS 6 match iOS 7 as well
(cherry-picked from 26ce21786252981563e49e91a85b3e0bfa16c3e3)
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 6089d9bd6..eae4c2025 100644 --- a/test/unit/support.js +++ b/test/unit/support.js @@ -521,7 +521,7 @@ testIframeWithCallback( "Check CSP (https://developer.mozilla.org/en-US/docs/Sec "submitBubbles": true, "tbody": true }; - } else if ( /iphone os 6_0/i.test( userAgent ) ) { + } else if ( /iphone os (?:6|7)_/i.test( userAgent ) ) { expected = { "ajax": true, "appendChecked": true, |