mirror of
https://github.com/jquery/jquery.git
synced 2025-01-10 18:24:24 +00:00
Support: Add expected support results for Safari 7 & IE11
This commit is contained in:
parent
c11becbb69
commit
37d036a84c
@ -83,6 +83,22 @@ testIframeWithCallback( "Check CSP (https://developer.mozilla.org/en-US/docs/Sec
|
|||||||
"radioValue": false,
|
"radioValue": false,
|
||||||
"reliableMarginRight": true
|
"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 ) ) {
|
} else if ( /msie 10\.0/i.test( userAgent ) ) {
|
||||||
expected = {
|
expected = {
|
||||||
"ajax": true,
|
"ajax": true,
|
||||||
@ -115,6 +131,22 @@ testIframeWithCallback( "Check CSP (https://developer.mozilla.org/en-US/docs/Sec
|
|||||||
"radioValue": false,
|
"radioValue": false,
|
||||||
"reliableMarginRight": true
|
"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 ) ) {
|
} else if ( /6\.0\.\d+ safari/i.test( userAgent ) ) {
|
||||||
expected = {
|
expected = {
|
||||||
"ajax": true,
|
"ajax": true,
|
||||||
|
Loading…
Reference in New Issue
Block a user