aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorMichał Gołębiowski <m.goleb@gmail.com>2014-01-22 21:35:09 +0100
committerMichał Gołębiowski <m.goleb@gmail.com>2014-01-22 21:35:09 +0100
commit37d036a84cfcd39e3ca7723540c6a6791d58fc69 (patch)
treebacdc6fce32b85713245f26dc05abb14fe80fd51 /test
parentc11becbb692f7707443eb2582543dfe96e8319e6 (diff)
downloadjquery-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.js32
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,