2019-02-18 18:02:38 +00:00
|
|
|
QUnit.module( "support", { afterEach: moduleTeardown } );
|
2011-05-10 10:23:53 +00:00
|
|
|
|
2013-08-26 22:54:13 +00:00
|
|
|
var computedSupport = getComputedSupport( jQuery.support );
|
|
|
|
|
|
|
|
function getComputedSupport( support ) {
|
|
|
|
var prop,
|
|
|
|
result = {};
|
|
|
|
|
|
|
|
for ( prop in support ) {
|
|
|
|
if ( typeof support[ prop ] === "function" ) {
|
|
|
|
result[ prop ] = support[ prop ]();
|
|
|
|
} else {
|
|
|
|
result[ prop ] = support[ prop ];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2022-07-12 15:12:27 +00:00
|
|
|
if ( includesModule( "css" ) ) {
|
2016-04-10 19:42:44 +00:00
|
|
|
testIframe(
|
2022-01-12 22:23:10 +00:00
|
|
|
"body background is not lost if set prior to loading jQuery (trac-9239)",
|
2015-08-16 03:45:28 +00:00
|
|
|
"support/bodyBackground.html",
|
2016-04-10 19:42:44 +00:00
|
|
|
function( assert, jQuery, window, document, color, support ) {
|
2015-08-16 03:45:28 +00:00
|
|
|
assert.expect( 2 );
|
|
|
|
var okValue = {
|
|
|
|
"#000000": true,
|
|
|
|
"rgb(0, 0, 0)": true
|
|
|
|
};
|
|
|
|
assert.ok( okValue[ color ], "color was not reset (" + color + ")" );
|
2011-10-31 22:24:34 +00:00
|
|
|
|
2016-01-27 11:13:32 +00:00
|
|
|
assert.deepEqual( jQuery.extend( {}, support ), computedSupport,
|
|
|
|
"Same support properties" );
|
2015-08-16 03:45:28 +00:00
|
|
|
}
|
|
|
|
);
|
2012-06-11 01:54:16 +00:00
|
|
|
}
|
2011-08-04 22:56:49 +00:00
|
|
|
|
2014-12-15 00:48:53 +00:00
|
|
|
// This test checks CSP only for browsers with "Content-Security-Policy" header support
|
2013-10-30 12:20:38 +00:00
|
|
|
// i.e. no old WebKit or old Firefox
|
2016-04-10 19:42:44 +00:00
|
|
|
testIframe(
|
2015-08-16 03:45:28 +00:00
|
|
|
"Check CSP (https://developer.mozilla.org/en-US/docs/Security/CSP) restrictions",
|
2017-08-01 16:52:45 +00:00
|
|
|
"mock.php?action=cspFrame",
|
2016-04-10 19:42:44 +00:00
|
|
|
function( assert, jQuery, window, document, support ) {
|
2015-09-08 00:26:29 +00:00
|
|
|
var done = assert.async();
|
|
|
|
|
2015-08-16 03:45:28 +00:00
|
|
|
assert.expect( 2 );
|
2016-01-27 11:13:32 +00:00
|
|
|
assert.deepEqual( jQuery.extend( {}, support ), computedSupport,
|
|
|
|
"No violations of CSP polices" );
|
2013-10-30 12:20:38 +00:00
|
|
|
|
2017-08-01 16:52:45 +00:00
|
|
|
supportjQuery.get( baseURL + "support/csp.log" ).done( function( data ) {
|
2015-08-16 03:45:28 +00:00
|
|
|
assert.equal( data, "", "No log request should be sent" );
|
2017-08-01 16:52:45 +00:00
|
|
|
supportjQuery.get( baseURL + "mock.php?action=cspClean" ).done( done );
|
2015-08-16 06:59:58 +00:00
|
|
|
} );
|
2013-10-30 12:20:38 +00:00
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2015-08-16 06:59:58 +00:00
|
|
|
( function() {
|
2020-01-27 17:54:47 +00:00
|
|
|
var browserKey, expected,
|
2018-04-23 12:16:21 +00:00
|
|
|
userAgent = window.navigator.userAgent,
|
|
|
|
expectedMap = {
|
|
|
|
edge: {
|
2022-12-14 00:41:31 +00:00
|
|
|
ajax: true,
|
|
|
|
boxSizingReliable: true,
|
|
|
|
checkClone: true,
|
|
|
|
checkOn: true,
|
|
|
|
clearCloneStyle: true,
|
|
|
|
cssSupportsSelector: false,
|
|
|
|
cors: true,
|
|
|
|
createHTMLDocument: true,
|
|
|
|
disconnectedMatch: true,
|
|
|
|
focusin: false,
|
|
|
|
getById: true,
|
|
|
|
noCloneChecked: true,
|
|
|
|
option: true,
|
|
|
|
optSelected: true,
|
|
|
|
pixelBoxStyles: true,
|
|
|
|
pixelPosition: true,
|
|
|
|
radioValue: true,
|
|
|
|
reliableMarginLeft: true,
|
|
|
|
reliableTrDimensions: false,
|
|
|
|
scope: false,
|
|
|
|
scrollboxSize: true,
|
|
|
|
sortDetached: true,
|
|
|
|
sortStable: true
|
2018-04-23 12:16:21 +00:00
|
|
|
},
|
|
|
|
ie_10_11: {
|
2022-12-14 00:41:31 +00:00
|
|
|
ajax: true,
|
|
|
|
boxSizingReliable: false,
|
|
|
|
checkClone: true,
|
|
|
|
checkOn: true,
|
|
|
|
clearCloneStyle: false,
|
|
|
|
cssSupportsSelector: false,
|
|
|
|
cors: true,
|
|
|
|
createHTMLDocument: true,
|
|
|
|
disconnectedMatch: true,
|
|
|
|
focusin: true,
|
|
|
|
getById: true,
|
|
|
|
noCloneChecked: false,
|
|
|
|
option: true,
|
|
|
|
optSelected: false,
|
|
|
|
pixelBoxStyles: true,
|
|
|
|
pixelPosition: true,
|
|
|
|
radioValue: false,
|
|
|
|
reliableMarginLeft: true,
|
|
|
|
reliableTrDimensions: false,
|
|
|
|
scope: false,
|
|
|
|
scrollboxSize: true,
|
|
|
|
sortDetached: true,
|
|
|
|
sortStable: true
|
2018-04-23 12:16:21 +00:00
|
|
|
},
|
|
|
|
ie_9: {
|
2022-12-14 00:41:31 +00:00
|
|
|
ajax: true,
|
|
|
|
boxSizingReliable: false,
|
|
|
|
checkClone: true,
|
|
|
|
checkOn: true,
|
|
|
|
clearCloneStyle: false,
|
|
|
|
cssSupportsSelector: false,
|
|
|
|
cors: false,
|
|
|
|
createHTMLDocument: true,
|
|
|
|
disconnectedMatch: false,
|
|
|
|
focusin: true,
|
|
|
|
getById: false,
|
|
|
|
noCloneChecked: false,
|
|
|
|
option: false,
|
|
|
|
optSelected: false,
|
|
|
|
pixelBoxStyles: true,
|
|
|
|
pixelPosition: true,
|
|
|
|
radioValue: false,
|
|
|
|
reliableMarginLeft: true,
|
|
|
|
reliableTrDimensions: false,
|
|
|
|
scope: false,
|
|
|
|
scrollboxSize: false,
|
|
|
|
sortDetached: true,
|
|
|
|
sortStable: true
|
2018-04-23 12:16:21 +00:00
|
|
|
},
|
|
|
|
chrome: {
|
2022-12-14 00:41:31 +00:00
|
|
|
ajax: true,
|
|
|
|
boxSizingReliable: true,
|
|
|
|
checkClone: true,
|
|
|
|
checkOn: true,
|
|
|
|
clearCloneStyle: true,
|
|
|
|
cssSupportsSelector: false,
|
|
|
|
cors: true,
|
|
|
|
createHTMLDocument: true,
|
|
|
|
disconnectedMatch: true,
|
|
|
|
focusin: false,
|
|
|
|
getById: true,
|
|
|
|
noCloneChecked: true,
|
|
|
|
option: true,
|
|
|
|
optSelected: true,
|
|
|
|
pixelBoxStyles: true,
|
|
|
|
pixelPosition: true,
|
|
|
|
radioValue: true,
|
|
|
|
reliableMarginLeft: true,
|
|
|
|
reliableTrDimensions: true,
|
|
|
|
scope: true,
|
|
|
|
scrollboxSize: true,
|
|
|
|
sortDetached: true,
|
|
|
|
sortStable: true
|
2018-04-23 12:16:21 +00:00
|
|
|
},
|
2018-11-12 17:55:47 +00:00
|
|
|
safari: {
|
2022-12-14 00:41:31 +00:00
|
|
|
ajax: true,
|
|
|
|
boxSizingReliable: true,
|
|
|
|
checkClone: true,
|
|
|
|
checkOn: true,
|
|
|
|
clearCloneStyle: true,
|
|
|
|
cssSupportsSelector: false,
|
|
|
|
cors: true,
|
|
|
|
createHTMLDocument: true,
|
|
|
|
disconnectedMatch: true,
|
|
|
|
focusin: false,
|
|
|
|
getById: true,
|
|
|
|
noCloneChecked: true,
|
|
|
|
option: true,
|
|
|
|
optSelected: true,
|
|
|
|
pixelBoxStyles: true,
|
|
|
|
pixelPosition: true,
|
|
|
|
radioValue: true,
|
|
|
|
reliableMarginLeft: true,
|
|
|
|
reliableTrDimensions: true,
|
|
|
|
scope: true,
|
|
|
|
scrollboxSize: true,
|
|
|
|
sortDetached: true,
|
|
|
|
sortStable: true
|
2018-04-23 12:16:21 +00:00
|
|
|
},
|
|
|
|
safari_9_10: {
|
2022-12-14 00:41:31 +00:00
|
|
|
ajax: true,
|
|
|
|
boxSizingReliable: true,
|
|
|
|
checkClone: true,
|
|
|
|
checkOn: true,
|
|
|
|
clearCloneStyle: true,
|
|
|
|
cssSupportsSelector: false,
|
|
|
|
cors: true,
|
|
|
|
createHTMLDocument: true,
|
|
|
|
disconnectedMatch: true,
|
|
|
|
focusin: false,
|
|
|
|
getById: true,
|
|
|
|
noCloneChecked: true,
|
|
|
|
option: true,
|
|
|
|
optSelected: true,
|
|
|
|
pixelBoxStyles: false,
|
|
|
|
pixelPosition: false,
|
|
|
|
radioValue: true,
|
|
|
|
reliableMarginLeft: true,
|
|
|
|
reliableTrDimensions: true,
|
|
|
|
scope: true,
|
|
|
|
scrollboxSize: true,
|
|
|
|
sortDetached: true,
|
|
|
|
sortStable: true
|
2018-04-23 12:16:21 +00:00
|
|
|
},
|
2018-11-12 17:54:15 +00:00
|
|
|
firefox: {
|
2022-12-14 00:41:31 +00:00
|
|
|
ajax: true,
|
|
|
|
boxSizingReliable: true,
|
|
|
|
checkClone: true,
|
|
|
|
checkOn: true,
|
|
|
|
clearCloneStyle: true,
|
|
|
|
cssSupportsSelector: true,
|
|
|
|
cors: true,
|
|
|
|
createHTMLDocument: true,
|
|
|
|
disconnectedMatch: true,
|
|
|
|
focusin: false,
|
|
|
|
getById: true,
|
|
|
|
noCloneChecked: true,
|
|
|
|
option: true,
|
|
|
|
optSelected: true,
|
|
|
|
pixelBoxStyles: true,
|
|
|
|
pixelPosition: true,
|
|
|
|
radioValue: true,
|
|
|
|
reliableMarginLeft: true,
|
|
|
|
reliableTrDimensions: false,
|
|
|
|
scope: true,
|
|
|
|
scrollboxSize: true,
|
|
|
|
sortDetached: true,
|
|
|
|
sortStable: true
|
|
|
|
},
|
|
|
|
firefox_102: {
|
|
|
|
ajax: true,
|
|
|
|
boxSizingReliable: true,
|
|
|
|
checkClone: true,
|
|
|
|
checkOn: true,
|
|
|
|
clearCloneStyle: true,
|
|
|
|
cssSupportsSelector: false,
|
|
|
|
cors: true,
|
|
|
|
createHTMLDocument: true,
|
|
|
|
disconnectedMatch: true,
|
|
|
|
focusin: false,
|
|
|
|
getById: true,
|
|
|
|
noCloneChecked: true,
|
|
|
|
option: true,
|
|
|
|
optSelected: true,
|
|
|
|
pixelBoxStyles: true,
|
|
|
|
pixelPosition: true,
|
|
|
|
radioValue: true,
|
|
|
|
reliableMarginLeft: true,
|
|
|
|
reliableTrDimensions: false,
|
|
|
|
scope: true,
|
|
|
|
scrollboxSize: true,
|
|
|
|
sortDetached: true,
|
|
|
|
sortStable: true
|
2018-04-23 12:16:21 +00:00
|
|
|
},
|
2018-11-12 17:54:15 +00:00
|
|
|
firefox_60: {
|
2022-12-14 00:41:31 +00:00
|
|
|
ajax: true,
|
|
|
|
boxSizingReliable: true,
|
|
|
|
checkClone: true,
|
|
|
|
checkOn: true,
|
|
|
|
clearCloneStyle: true,
|
|
|
|
cssSupportsSelector: false,
|
|
|
|
cors: true,
|
|
|
|
createHTMLDocument: true,
|
|
|
|
disconnectedMatch: true,
|
|
|
|
focusin: false,
|
|
|
|
getById: true,
|
|
|
|
noCloneChecked: true,
|
|
|
|
option: true,
|
|
|
|
optSelected: true,
|
|
|
|
pixelBoxStyles: true,
|
|
|
|
pixelPosition: true,
|
|
|
|
radioValue: true,
|
|
|
|
reliableMarginLeft: false,
|
|
|
|
reliableTrDimensions: true,
|
|
|
|
scope: true,
|
|
|
|
scrollboxSize: true,
|
|
|
|
sortDetached: true,
|
|
|
|
sortStable: true
|
2018-07-09 16:37:52 +00:00
|
|
|
},
|
2018-11-12 17:55:47 +00:00
|
|
|
ios: {
|
2022-12-14 00:41:31 +00:00
|
|
|
ajax: true,
|
|
|
|
boxSizingReliable: true,
|
|
|
|
checkClone: true,
|
|
|
|
checkOn: true,
|
|
|
|
clearCloneStyle: true,
|
|
|
|
cssSupportsSelector: false,
|
|
|
|
cors: true,
|
|
|
|
createHTMLDocument: true,
|
|
|
|
disconnectedMatch: true,
|
|
|
|
focusin: false,
|
|
|
|
getById: true,
|
|
|
|
noCloneChecked: true,
|
|
|
|
option: true,
|
|
|
|
optSelected: true,
|
|
|
|
pixelBoxStyles: true,
|
|
|
|
pixelPosition: true,
|
|
|
|
radioValue: true,
|
|
|
|
reliableMarginLeft: true,
|
|
|
|
reliableTrDimensions: true,
|
|
|
|
scope: true,
|
|
|
|
scrollboxSize: true,
|
|
|
|
sortDetached: true,
|
|
|
|
sortStable: true
|
2018-04-23 12:16:21 +00:00
|
|
|
},
|
|
|
|
ios_9_10: {
|
2022-12-14 00:41:31 +00:00
|
|
|
ajax: true,
|
|
|
|
boxSizingReliable: true,
|
|
|
|
checkClone: true,
|
|
|
|
checkOn: true,
|
|
|
|
clearCloneStyle: true,
|
|
|
|
cssSupportsSelector: false,
|
|
|
|
cors: true,
|
|
|
|
createHTMLDocument: true,
|
|
|
|
disconnectedMatch: true,
|
|
|
|
focusin: false,
|
|
|
|
getById: true,
|
|
|
|
noCloneChecked: true,
|
|
|
|
option: true,
|
|
|
|
optSelected: true,
|
|
|
|
pixelBoxStyles: false,
|
|
|
|
pixelPosition: false,
|
|
|
|
radioValue: true,
|
|
|
|
reliableMarginLeft: true,
|
|
|
|
reliableTrDimensions: true,
|
|
|
|
scope: true,
|
|
|
|
scrollboxSize: true,
|
|
|
|
sortDetached: true,
|
|
|
|
sortStable: true
|
2018-04-23 12:16:21 +00:00
|
|
|
},
|
|
|
|
ios_8: {
|
2022-12-14 00:41:31 +00:00
|
|
|
ajax: true,
|
|
|
|
boxSizingReliable: true,
|
|
|
|
checkClone: true,
|
|
|
|
checkOn: true,
|
|
|
|
clearCloneStyle: true,
|
|
|
|
cssSupportsSelector: false,
|
|
|
|
cors: true,
|
|
|
|
createHTMLDocument: false,
|
|
|
|
disconnectedMatch: true,
|
|
|
|
focusin: false,
|
|
|
|
getById: true,
|
|
|
|
noCloneChecked: true,
|
|
|
|
option: true,
|
|
|
|
optSelected: true,
|
|
|
|
pixelBoxStyles: false,
|
|
|
|
pixelPosition: false,
|
|
|
|
radioValue: true,
|
|
|
|
reliableMarginLeft: true,
|
|
|
|
reliableTrDimensions: true,
|
|
|
|
scope: true,
|
|
|
|
scrollboxSize: true,
|
|
|
|
sortDetached: true,
|
|
|
|
sortStable: true
|
2018-04-23 12:16:21 +00:00
|
|
|
},
|
|
|
|
ios_7: {
|
2022-12-14 00:41:31 +00:00
|
|
|
ajax: true,
|
|
|
|
boxSizingReliable: true,
|
|
|
|
checkClone: true,
|
|
|
|
checkOn: true,
|
|
|
|
clearCloneStyle: true,
|
|
|
|
cssSupportsSelector: false,
|
|
|
|
cors: true,
|
|
|
|
createHTMLDocument: true,
|
|
|
|
disconnectedMatch: true,
|
|
|
|
focusin: false,
|
|
|
|
getById: true,
|
|
|
|
noCloneChecked: true,
|
|
|
|
option: true,
|
|
|
|
optSelected: true,
|
|
|
|
pixelBoxStyles: false,
|
|
|
|
pixelPosition: false,
|
|
|
|
radioValue: true,
|
|
|
|
reliableMarginLeft: true,
|
|
|
|
reliableTrDimensions: true,
|
|
|
|
scope: true,
|
|
|
|
scrollboxSize: true,
|
|
|
|
sortDetached: true,
|
|
|
|
sortStable: true
|
2018-04-23 12:16:21 +00:00
|
|
|
},
|
|
|
|
android: {
|
2022-12-14 00:41:31 +00:00
|
|
|
ajax: true,
|
|
|
|
boxSizingReliable: true,
|
|
|
|
checkClone: false,
|
|
|
|
checkOn: false,
|
|
|
|
clearCloneStyle: true,
|
|
|
|
cssSupportsSelector: false,
|
|
|
|
cors: true,
|
|
|
|
createHTMLDocument: true,
|
|
|
|
disconnectedMatch: true,
|
|
|
|
focusin: false,
|
|
|
|
getById: true,
|
|
|
|
noCloneChecked: true,
|
|
|
|
option: true,
|
|
|
|
optSelected: true,
|
|
|
|
pixelBoxStyles: false,
|
|
|
|
pixelPosition: false,
|
|
|
|
radioValue: true,
|
|
|
|
reliableMarginLeft: false,
|
|
|
|
reliableTrDimensions: true,
|
|
|
|
scope: false,
|
|
|
|
scrollboxSize: true,
|
|
|
|
sortDetached: false,
|
|
|
|
sortStable: false
|
2018-04-23 12:16:21 +00:00
|
|
|
}
|
|
|
|
};
|
2013-03-07 14:15:12 +00:00
|
|
|
|
2020-01-27 17:54:47 +00:00
|
|
|
// Make the slim build pass tests.
|
|
|
|
for ( browserKey in expectedMap ) {
|
2022-12-14 00:41:31 +00:00
|
|
|
if ( !includesModule( "ajax" ) ) {
|
2020-01-27 17:54:47 +00:00
|
|
|
delete expectedMap[ browserKey ].ajax;
|
|
|
|
delete expectedMap[ browserKey ].cors;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-14 00:41:31 +00:00
|
|
|
// Make the selector-native build pass tests.
|
|
|
|
for ( browserKey in expectedMap ) {
|
|
|
|
if ( !includesModule( "selector" ) ) {
|
|
|
|
delete expectedMap[ browserKey ].cssSupportsSelector;
|
|
|
|
delete expectedMap[ browserKey ].disconnectedMatch;
|
|
|
|
delete expectedMap[ browserKey ].getById;
|
|
|
|
delete expectedMap[ browserKey ].scope;
|
|
|
|
delete expectedMap[ browserKey ].sortDetached;
|
|
|
|
delete expectedMap[ browserKey ].sortStable;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-16 12:44:24 +00:00
|
|
|
if ( /edge\//i.test( userAgent ) ) {
|
2018-04-23 12:16:21 +00:00
|
|
|
expected = expectedMap.edge;
|
2014-12-09 20:05:31 +00:00
|
|
|
} else if ( /(msie 10\.0|trident\/7\.0)/i.test( userAgent ) ) {
|
2018-04-23 12:16:21 +00:00
|
|
|
expected = expectedMap.ie_10_11;
|
2013-03-07 14:15:12 +00:00
|
|
|
} else if ( /msie 9\.0/i.test( userAgent ) ) {
|
2018-04-23 12:16:21 +00:00
|
|
|
expected = expectedMap.ie_9;
|
2015-06-13 22:50:05 +00:00
|
|
|
} else if ( /chrome/i.test( userAgent ) ) {
|
2015-08-16 06:59:58 +00:00
|
|
|
|
2015-06-13 22:50:05 +00:00
|
|
|
// Catches Chrome on Android as well (i.e. the default
|
|
|
|
// Android browser on Android >= 4.4).
|
2018-04-23 12:16:21 +00:00
|
|
|
expected = expectedMap.chrome;
|
2019-09-23 17:28:43 +00:00
|
|
|
} else if ( /\b(?:9|10)\.\d+(\.\d+)* safari/i.test( userAgent ) ) {
|
2018-04-23 12:16:21 +00:00
|
|
|
expected = expectedMap.safari_9_10;
|
2022-12-14 00:41:31 +00:00
|
|
|
} else if ( /firefox\/[456]\d\b/i.test( userAgent ) ) {
|
2018-07-09 16:37:52 +00:00
|
|
|
expected = expectedMap.firefox_60;
|
2022-12-14 00:41:31 +00:00
|
|
|
} else if ( /firefox\/(?:[789]\d|102)\b/i.test( userAgent ) ) {
|
|
|
|
expected = expectedMap.firefox_102;
|
2014-12-09 20:05:31 +00:00
|
|
|
} else if ( /firefox/i.test( userAgent ) ) {
|
2018-04-23 12:16:21 +00:00
|
|
|
expected = expectedMap.firefox;
|
2019-09-23 18:00:24 +00:00
|
|
|
} else if ( /android 4\.[0-3]/i.test( userAgent ) ) {
|
|
|
|
expected = expectedMap.android;
|
2016-09-19 16:55:12 +00:00
|
|
|
} else if ( /iphone os (?:9|10)_/i.test( userAgent ) ) {
|
2018-04-23 12:16:21 +00:00
|
|
|
expected = expectedMap.ios_9_10;
|
2015-10-30 18:16:27 +00:00
|
|
|
} else if ( /iphone os 8_/i.test( userAgent ) ) {
|
2018-04-23 12:16:21 +00:00
|
|
|
expected = expectedMap.ios_8;
|
2015-10-30 18:16:27 +00:00
|
|
|
} else if ( /iphone os 7_/i.test( userAgent ) ) {
|
2018-04-23 12:16:21 +00:00
|
|
|
expected = expectedMap.ios_7;
|
2019-09-23 17:28:43 +00:00
|
|
|
} else if ( /(?:iphone|ipad);.*(?:iphone)? os \d+_/i.test( userAgent ) ) {
|
|
|
|
expected = expectedMap.ios;
|
2019-09-23 18:00:24 +00:00
|
|
|
} else if ( /\b\d+(\.\d+)+ safari/i.test( userAgent ) ) {
|
|
|
|
expected = expectedMap.safari;
|
2013-03-07 14:15:12 +00:00
|
|
|
}
|
|
|
|
|
2015-05-08 03:16:18 +00:00
|
|
|
QUnit.test( "Verify that support tests resolve as expected per browser", function( assert ) {
|
|
|
|
if ( !expected ) {
|
|
|
|
assert.expect( 1 );
|
|
|
|
assert.ok( false, "Known client: " + userAgent );
|
|
|
|
}
|
2013-03-07 14:15:12 +00:00
|
|
|
|
2015-05-08 03:16:18 +00:00
|
|
|
var i, prop,
|
|
|
|
j = 0;
|
2013-03-07 14:15:12 +00:00
|
|
|
|
2015-05-08 03:16:18 +00:00
|
|
|
for ( prop in computedSupport ) {
|
|
|
|
j++;
|
|
|
|
}
|
2013-03-07 14:15:12 +00:00
|
|
|
|
2022-12-14 00:41:31 +00:00
|
|
|
// Add an assertion per undefined support prop as it may
|
|
|
|
// not even exist on computedSupport but we still want to run
|
|
|
|
// the check.
|
|
|
|
for ( prop in expected ) {
|
|
|
|
if ( expected[ prop ] === undefined ) {
|
|
|
|
j++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-08 03:16:18 +00:00
|
|
|
assert.expect( j );
|
2015-08-16 06:59:58 +00:00
|
|
|
|
2015-05-08 03:16:18 +00:00
|
|
|
for ( i in expected ) {
|
2022-07-12 15:12:27 +00:00
|
|
|
if ( includesModule( "ajax" ) || i !== "ajax" && i !== "cors" ) {
|
2015-05-08 03:16:18 +00:00
|
|
|
assert.equal( computedSupport[ i ], expected[ i ],
|
|
|
|
"jQuery.support['" + i + "']: " + computedSupport[ i ] +
|
|
|
|
", expected['" + i + "']: " + expected[ i ] );
|
|
|
|
} else {
|
|
|
|
assert.ok( true, "no ajax; skipping jQuery.support['" + i + "']" );
|
2013-03-07 14:15:12 +00:00
|
|
|
}
|
2015-05-08 03:16:18 +00:00
|
|
|
}
|
2016-01-27 11:13:32 +00:00
|
|
|
} );
|
2013-03-07 14:15:12 +00:00
|
|
|
|
2018-04-23 12:16:21 +00:00
|
|
|
QUnit.test( "Verify most support tests are failing in one " +
|
|
|
|
"of tested browsers", function( assert ) {
|
|
|
|
|
|
|
|
var prop, browserKey, supportTestName,
|
|
|
|
i = 0,
|
|
|
|
supportProps = {},
|
|
|
|
failingSupportProps = {},
|
|
|
|
whitelist = {
|
|
|
|
ajax: true
|
|
|
|
};
|
|
|
|
|
|
|
|
for ( prop in computedSupport ) {
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
2022-12-14 00:41:31 +00:00
|
|
|
// Add an assertion per undefined support prop as it may
|
|
|
|
// not even exist on computedSupport but we still want to run
|
|
|
|
// the check.
|
|
|
|
for ( prop in expected ) {
|
|
|
|
if ( expected[ prop ] === undefined ) {
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-23 12:16:21 +00:00
|
|
|
assert.expect( i );
|
|
|
|
|
|
|
|
// Record all support props and the failing ones and ensure everyone
|
|
|
|
// except a few on a whitelist are failing at least once.
|
|
|
|
for ( browserKey in expectedMap ) {
|
|
|
|
for ( supportTestName in expectedMap[ browserKey ] ) {
|
|
|
|
supportProps[ supportTestName ] = true;
|
2022-12-14 00:41:31 +00:00
|
|
|
if ( !expectedMap[ browserKey ][ supportTestName ] ) {
|
2018-04-23 12:16:21 +00:00
|
|
|
failingSupportProps[ supportTestName ] = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for ( supportTestName in supportProps ) {
|
|
|
|
assert.ok( whitelist[ supportTestName ] || failingSupportProps[ supportTestName ],
|
|
|
|
"jQuery.support['" + supportTestName + "'] always succeeds; remove it?" );
|
|
|
|
}
|
|
|
|
} );
|
|
|
|
|
2015-08-16 06:59:58 +00:00
|
|
|
} )();
|