diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2017-11-20 23:46:31 +0100 |
---|---|---|
committer | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2017-11-20 23:46:31 +0100 |
commit | 60cc6c9fbf9188eb3ce45f0cd97e8af7f9f54263 (patch) | |
tree | 31da6ba5f91cb225f7070df56782dc8fa1ede84e | |
parent | 3e902a812014e8a6980e08599c4840b1cb969f7c (diff) | |
download | jquery-60cc6c9fbf9188eb3ce45f0cd97e8af7f9f54263.tar.gz jquery-60cc6c9fbf9188eb3ce45f0cd97e8af7f9f54263.zip |
Tests: Add iOS 11 support test results
-rw-r--r-- | test/unit/support.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/unit/support.js b/test/unit/support.js index 0f0354b58..312173207 100644 --- a/test/unit/support.js +++ b/test/unit/support.js @@ -187,6 +187,24 @@ testIframe( "reliableMarginLeft": false, "scrollboxSize": true }; + } else if ( /iphone os 11_/i.test( userAgent ) ) { + expected = { + "ajax": true, + "boxSizingReliable": true, + "checkClone": true, + "checkOn": true, + "clearCloneStyle": true, + "cors": true, + "createHTMLDocument": true, + "focusin": false, + "noCloneChecked": true, + "optSelected": true, + "pixelBoxStyles": true, + "pixelPosition": true, + "radioValue": true, + "reliableMarginLeft": true, + "scrollboxSize": true + }; } else if ( /iphone os (?:9|10)_/i.test( userAgent ) ) { expected = { "ajax": true, |