diff options
author | Michał Gołębiowski <m.goleb@gmail.com> | 2014-01-22 21:35:09 +0100 |
---|---|---|
committer | Michał Gołębiowski <m.goleb@gmail.com> | 2014-01-22 21:35:09 +0100 |
commit | 37d036a84cfcd39e3ca7723540c6a6791d58fc69 (patch) | |
tree | bacdc6fce32b85713245f26dc05abb14fe80fd51 /test | |
parent | c11becbb692f7707443eb2582543dfe96e8319e6 (diff) | |
download | jquery-37d036a84cfcd39e3ca7723540c6a6791d58fc69.tar.gz jquery-37d036a84cfcd39e3ca7723540c6a6791d58fc69.zip |
Support: Add expected support results for Safari 7 & IE11
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/support.js | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/test/unit/support.js b/test/unit/support.js index 86cc7a269..2f171a675 100644 --- a/test/unit/support.js +++ b/test/unit/support.js @@ -83,6 +83,22 @@ testIframeWithCallback( "Check CSP (https://developer.mozilla.org/en-US/docs/Sec "radioValue": false, "reliableMarginRight": true }; + } else if ( /trident\/7\.0/i.test( userAgent ) ) { + expected = { + "ajax": true, + "boxSizingReliable": false, + "checkClone": true, + "checkOn": true, + "clearCloneStyle": false, + "cors": true, + "focusinBubbles": true, + "noCloneChecked": true, + "optDisabled": true, + "optSelected": false, + "pixelPosition": true, + "radioValue": false, + "reliableMarginRight": true + }; } else if ( /msie 10\.0/i.test( userAgent ) ) { expected = { "ajax": true, @@ -115,6 +131,22 @@ testIframeWithCallback( "Check CSP (https://developer.mozilla.org/en-US/docs/Sec "radioValue": false, "reliableMarginRight": true }; + } else if ( /7\.0\.\d+ safari/i.test( userAgent ) ) { + expected = { + "ajax": true, + "boxSizingReliable": true, + "checkClone": true, + "checkOn": true, + "clearCloneStyle": true, + "cors": true, + "focusinBubbles": false, + "noCloneChecked": true, + "optDisabled": true, + "optSelected": true, + "pixelPosition": false, + "radioValue": true, + "reliableMarginRight": true + }; } else if ( /6\.0\.\d+ safari/i.test( userAgent ) ) { expected = { "ajax": true, |