From 8366f60c7e75a22f0b82da1f182da81c59d3eabd Mon Sep 17 00:00:00 2001 From: =?utf8?q?Micha=C5=82=20Go=C5=82e=CC=A8biowski?= Date: Wed, 22 Jan 2014 21:35:31 +0100 Subject: [PATCH] Support: Add expected support results for Safari 7 & IE11 --- test/unit/support.js | 74 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) 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, -- 2.39.5