diff options
author | Michał Gołębiowski <m.goleb@gmail.com> | 2014-01-22 21:35:31 +0100 |
---|---|---|
committer | Michał Gołębiowski <m.goleb@gmail.com> | 2014-01-22 21:35:31 +0100 |
commit | 8366f60c7e75a22f0b82da1f182da81c59d3eabd (patch) | |
tree | 6d193d09d855155483c00637f734e38a23a8c798 /test | |
parent | 05c108ecbd72d6df36f7ae2ee934f3c3fb2b5db3 (diff) | |
download | jquery-8366f60c7e75a22f0b82da1f182da81c59d3eabd.tar.gz jquery-8366f60c7e75a22f0b82da1f182da81c59d3eabd.zip |
Support: Add expected support results for Safari 7 & IE11
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/support.js | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/test/unit/support.js b/test/unit/support.js index 24578a058..3b198b30a 100644 --- a/test/unit/support.js +++ b/test/unit/support.js @@ -156,6 +156,43 @@ testIframeWithCallback( "Check CSP (https://developer.mozilla.org/en-US/docs/Sec "submitBubbles": true, "tbody": true }; + } else if ( /trident\/7\.0/i.test( userAgent ) ) { + expected = { + "ajax": true, + "appendChecked": true, + "boxSizing": true, + "boxSizingReliable": false, + "changeBubbles": true, + "checkClone": true, + "checkOn": true, + "clearCloneStyle": false, + "cors": true, + "cssFloat": true, + "deleteExpando": true, + "enctype": true, + "focusinBubbles": true, + "getSetAttribute": true, + "hrefNormalized": true, + "html5Clone": true, + "htmlSerialize": true, + "inlineBlockNeedsLayout": false, + "input": true, + "leadingWhitespace": true, + "noCloneChecked": true, + "noCloneEvent": true, + "opacity": true, + "optDisabled": true, + "optSelected": false, + "ownLast": false, + "pixelPosition": true, + "radioValue": false, + "reliableHiddenOffsets": true, + "reliableMarginRight": true, + "shrinkWrapBlocks": false, + "style": true, + "submitBubbles": true, + "tbody": true + }; } else if ( /msie 10\.0/i.test( userAgent ) ) { expected = { "ajax": true, @@ -341,6 +378,43 @@ testIframeWithCallback( "Check CSP (https://developer.mozilla.org/en-US/docs/Sec "submitBubbles": false, "tbody": false }; + } else if ( /7\.0\.\d+ safari/i.test( userAgent ) ) { + expected = { + "ajax": true, + "appendChecked": true, + "boxSizing": true, + "boxSizingReliable": true, + "changeBubbles": true, + "checkClone": true, + "checkOn": true, + "clearCloneStyle": true, + "cors": true, + "cssFloat": true, + "deleteExpando": true, + "enctype": true, + "focusinBubbles": false, + "getSetAttribute": true, + "hrefNormalized": true, + "html5Clone": true, + "htmlSerialize": true, + "inlineBlockNeedsLayout": false, + "input": true, + "leadingWhitespace": true, + "noCloneChecked": true, + "noCloneEvent": true, + "opacity": true, + "optDisabled": true, + "optSelected": true, + "ownLast": false, + "pixelPosition": false, + "radioValue": true, + "reliableHiddenOffsets": true, + "reliableMarginRight": true, + "shrinkWrapBlocks": false, + "style": true, + "submitBubbles": true, + "tbody": true + }; } else if ( /6\.0\.\d+ safari/i.test( userAgent ) ) { expected = { "ajax": true, |