Support: Add expected support results for Safari 7 & IE11

This commit is contained in:
Michał Gołębiowski 2014-01-22 21:35:31 +01:00
parent 05c108ecbd
commit 8366f60c7e

View File

@ -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,