diff options
-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, |