diff options
author | Michał Gołębiowski <m.goleb@gmail.com> | 2015-10-18 17:31:50 -0400 |
---|---|---|
committer | Michał Gołębiowski <m.goleb@gmail.com> | 2015-10-18 17:31:50 -0400 |
commit | 99f41c23fd9ba20ea1a18da3cc20f2cffb31c614 (patch) | |
tree | 84419519be98de9843079b9f5484ca73da854772 | |
parent | d047073d2bc4f507ed98c157739b1e3d0417b3f6 (diff) | |
download | jquery-99f41c23fd9ba20ea1a18da3cc20f2cffb31c614.tar.gz jquery-99f41c23fd9ba20ea1a18da3cc20f2cffb31c614.zip |
Tests: Add Safari 9 support tests results
Refs e99a3ac7066226d00ff5828de596d4a4b3818c0c
-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 4818b489e..b9788b55f 100644 --- a/test/unit/support.js +++ b/test/unit/support.js @@ -249,6 +249,40 @@ testIframeWithCallback( "style": true, "submit": true }; + } else if ( /9\.0(\.\d+|) safari/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 ( /8\.0(\.\d+|) safari/i.test( userAgent ) ) { expected = { "ajax": true, |