diff options
author | Michał Gołębiowski <m.goleb@gmail.com> | 2015-10-30 19:18:20 +0100 |
---|---|---|
committer | Michał Gołębiowski <m.goleb@gmail.com> | 2015-10-30 19:18:20 +0100 |
commit | dec9ab9d3fe29686b8922e978ebf1504becc85e9 (patch) | |
tree | 0137db411224138ac1ff50dddca37805d8fa465c | |
parent | 06840d8b257f568dd84ea4d54d35ff25702f1e4e (diff) | |
download | jquery-dec9ab9d3fe29686b8922e978ebf1504becc85e9.tar.gz jquery-dec9ab9d3fe29686b8922e978ebf1504becc85e9.zip |
Tests: Add iOS 9 support tests results
-rw-r--r-- | test/unit/support.js | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/test/unit/support.js b/test/unit/support.js index b9788b55f..486e0be3f 100644 --- a/test/unit/support.js +++ b/test/unit/support.js @@ -385,6 +385,40 @@ testIframeWithCallback( "style": true, "submit": true }; + } else if ( /iphone os 9/i.test( userAgent ) ) { + expected = { + "ajax": true, + "attributes": true, + "boxSizingReliable": true, + "change": true, + "checkClone": true, + "checkOn": true, + "clearCloneStyle": true, + "cors": true, + "createHTMLDocument": true, + "cssFloat": true, + "deleteExpando": true, + "focusin": false, + "gBCRDimensions": true, + "html5Clone": true, + "htmlSerialize": true, + "input": true, + "leadingWhitespace": true, + "noCloneChecked": true, + "noCloneEvent": true, + "opacity": true, + "optDisabled": true, + "optSelected": true, + "ownFirst": true, + "pixelMarginRight": true, + "pixelPosition": false, + "radioValue": true, + "reliableHiddenOffsets": true, + "reliableMarginRight": true, + "reliableMarginLeft": true, + "style": true, + "submit": true + }; } else if ( /iphone os 8/i.test( userAgent ) ) { expected = { "ajax": true, |