From 37d036a84cfcd39e3ca7723540c6a6791d58fc69 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:09 +0100 Subject: [PATCH] Support: Add expected support results for Safari 7 & IE11 --- test/unit/support.js | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) 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, -- 2.39.5