2011-05-10 10:23:53 +00:00
|
|
|
module("support", { teardown: moduleTeardown });
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2012-06-11 01:54:16 +00:00
|
|
|
if ( jQuery.css ) {
|
2012-12-17 14:17:39 +00:00
|
|
|
testIframeWithCallback( "body background is not lost if set prior to loading jQuery (#9239)", "support/bodyBackground.html", function( color, support ) {
|
2012-06-11 01:54:16 +00:00
|
|
|
expect( 2 );
|
2013-08-15 18:15:49 +00:00
|
|
|
var okValue = {
|
|
|
|
"#000000": true,
|
|
|
|
"rgb(0, 0, 0)": true
|
|
|
|
};
|
2012-06-11 01:54:16 +00:00
|
|
|
ok( okValue[ color ], "color was not reset (" + color + ")" );
|
2011-10-31 22:24:34 +00:00
|
|
|
|
2013-08-26 22:54:13 +00:00
|
|
|
deepEqual( jQuery.extend( {}, support ), computedSupport, "Same support properties" );
|
2012-06-11 01:54:16 +00:00
|
|
|
});
|
|
|
|
}
|
2011-08-04 22:56:49 +00:00
|
|
|
|
2013-03-07 14:15:12 +00:00
|
|
|
(function() {
|
2013-09-11 01:35:46 +00:00
|
|
|
var expected, version,
|
2013-03-07 14:15:12 +00:00
|
|
|
userAgent = window.navigator.userAgent;
|
|
|
|
|
|
|
|
if ( /chrome/i.test( userAgent ) ) {
|
2013-09-11 01:35:46 +00:00
|
|
|
version = userAgent.match( /chrome\/(\d+)/i )[ 1 ];
|
2013-03-07 14:15:12 +00:00
|
|
|
expected = {
|
2013-08-26 22:54:13 +00:00
|
|
|
"ajax": true,
|
2013-03-07 14:15:12 +00:00
|
|
|
"boxSizingReliable": true,
|
2013-08-26 22:54:13 +00:00
|
|
|
"checkClone": true,
|
|
|
|
"checkOn": true,
|
|
|
|
"clearCloneStyle": true,
|
|
|
|
"cors": true,
|
|
|
|
"focusinBubbles": false,
|
|
|
|
"noCloneChecked": true,
|
|
|
|
"optDisabled": true,
|
|
|
|
"optSelected": true,
|
2013-09-11 01:35:46 +00:00
|
|
|
"pixelPosition": version >= 28,
|
2013-08-26 22:54:13 +00:00
|
|
|
"radioValue": true,
|
|
|
|
"reliableMarginRight": true
|
2013-03-07 14:15:12 +00:00
|
|
|
};
|
|
|
|
} else if ( /opera.*version\/12\.1/i.test( userAgent ) ) {
|
|
|
|
expected = {
|
2013-08-26 22:54:13 +00:00
|
|
|
"ajax": true,
|
2013-03-07 14:15:12 +00:00
|
|
|
"boxSizingReliable": true,
|
2013-08-26 22:54:13 +00:00
|
|
|
"checkClone": true,
|
|
|
|
"checkOn": true,
|
|
|
|
"clearCloneStyle": true,
|
|
|
|
"cors": true,
|
|
|
|
"focusinBubbles": false,
|
|
|
|
"noCloneChecked": true,
|
|
|
|
"optDisabled": true,
|
|
|
|
"optSelected": true,
|
|
|
|
"pixelPosition": true,
|
|
|
|
"radioValue": false,
|
|
|
|
"reliableMarginRight": true
|
2013-03-07 14:15:12 +00:00
|
|
|
};
|
|
|
|
} else if ( /msie 10\.0/i.test( userAgent ) ) {
|
|
|
|
expected = {
|
2013-08-26 22:54:13 +00:00
|
|
|
"ajax": true,
|
2013-03-07 14:15:12 +00:00
|
|
|
"boxSizingReliable": false,
|
2013-08-26 22:54:13 +00:00
|
|
|
"checkClone": true,
|
|
|
|
"checkOn": true,
|
|
|
|
"clearCloneStyle": false,
|
|
|
|
"cors": true,
|
|
|
|
"focusinBubbles": true,
|
|
|
|
"noCloneChecked": false,
|
|
|
|
"optDisabled": true,
|
|
|
|
"optSelected": false,
|
|
|
|
"pixelPosition": true,
|
|
|
|
"radioValue": false,
|
|
|
|
"reliableMarginRight": true
|
2013-03-07 14:15:12 +00:00
|
|
|
};
|
|
|
|
} else if ( /msie 9\.0/i.test( userAgent ) ) {
|
|
|
|
expected = {
|
2013-08-26 22:54:13 +00:00
|
|
|
"ajax": true,
|
2013-03-07 14:15:12 +00:00
|
|
|
"boxSizingReliable": false,
|
2013-08-26 22:54:13 +00:00
|
|
|
"checkClone": true,
|
|
|
|
"checkOn": true,
|
|
|
|
"clearCloneStyle": false,
|
|
|
|
"cors": false,
|
|
|
|
"focusinBubbles": true,
|
|
|
|
"noCloneChecked": false,
|
|
|
|
"optDisabled": true,
|
|
|
|
"optSelected": false,
|
|
|
|
"pixelPosition": true,
|
|
|
|
"radioValue": false,
|
|
|
|
"reliableMarginRight": true
|
2013-03-07 14:15:12 +00:00
|
|
|
};
|
2013-08-26 22:54:13 +00:00
|
|
|
} else if ( /6\.0\.\d+ safari/i.test( userAgent ) ) {
|
2013-03-07 14:15:12 +00:00
|
|
|
expected = {
|
2013-08-26 22:54:13 +00:00
|
|
|
"ajax": true,
|
2013-03-07 14:15:12 +00:00
|
|
|
"boxSizingReliable": true,
|
2013-08-26 22:54:13 +00:00
|
|
|
"checkClone": true,
|
|
|
|
"checkOn": true,
|
|
|
|
"clearCloneStyle": true,
|
|
|
|
"cors": true,
|
|
|
|
"focusinBubbles": false,
|
|
|
|
"noCloneChecked": true,
|
|
|
|
"optDisabled": true,
|
|
|
|
"optSelected": true,
|
|
|
|
"pixelPosition": false,
|
|
|
|
"radioValue": true,
|
|
|
|
"reliableMarginRight": true
|
2013-03-07 14:15:12 +00:00
|
|
|
};
|
2013-09-11 01:35:46 +00:00
|
|
|
} else if ( /5\.1\.\d+ safari/i.test( userAgent ) ) {
|
|
|
|
expected = {
|
|
|
|
"ajax":true,
|
|
|
|
"boxSizingReliable": true,
|
|
|
|
"checkClone":false,
|
|
|
|
"checkOn":false,
|
|
|
|
"clearCloneStyle": true,
|
|
|
|
"cors":true,
|
|
|
|
"focusinBubbles":false,
|
|
|
|
"noCloneChecked":true,
|
|
|
|
"optDisabled":true,
|
|
|
|
"optSelected":true,
|
|
|
|
"pixelPosition": false,
|
|
|
|
"radioValue":true,
|
|
|
|
"reliableMarginRight":true
|
|
|
|
};
|
2013-03-07 14:15:12 +00:00
|
|
|
} else if ( /firefox/i.test( userAgent ) ) {
|
2013-09-11 01:35:46 +00:00
|
|
|
version = userAgent.match( /firefox\/(\d+)/i )[ 1 ];
|
2013-03-07 14:15:12 +00:00
|
|
|
expected = {
|
2013-08-26 22:54:13 +00:00
|
|
|
"ajax": true,
|
2013-09-11 01:35:46 +00:00
|
|
|
"boxSizingReliable": version >= 23,
|
2013-08-26 22:54:13 +00:00
|
|
|
"checkClone": true,
|
|
|
|
"checkOn": true,
|
2013-03-07 14:15:12 +00:00
|
|
|
"clearCloneStyle": true,
|
2013-08-26 22:54:13 +00:00
|
|
|
"cors": true,
|
|
|
|
"focusinBubbles": false,
|
|
|
|
"noCloneChecked": true,
|
|
|
|
"optDisabled": true,
|
|
|
|
"optSelected": true,
|
|
|
|
"pixelPosition": true,
|
|
|
|
"radioValue": true,
|
|
|
|
"reliableMarginRight": true
|
2013-03-07 14:15:12 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( expected ) {
|
|
|
|
test("Verify that the support tests resolve as expected per browser", function() {
|
|
|
|
var i, prop,
|
|
|
|
j = 0;
|
|
|
|
|
2013-08-26 22:54:13 +00:00
|
|
|
for ( prop in computedSupport ) {
|
2013-03-07 14:15:12 +00:00
|
|
|
j++;
|
|
|
|
}
|
|
|
|
|
|
|
|
expect( j );
|
|
|
|
|
|
|
|
for ( i in expected ) {
|
2013-08-26 22:54:13 +00:00
|
|
|
// TODO check for all modules containing support properties
|
2013-03-07 14:15:12 +00:00
|
|
|
if ( jQuery.ajax || i !== "ajax" && i !== "cors" ) {
|
2013-08-26 22:54:13 +00:00
|
|
|
equal( computedSupport[ i ], expected[ i ],
|
|
|
|
"jQuery.support['" + i + "']: " + computedSupport[ i ] +
|
|
|
|
", expected['" + i + "']: " + expected[ i ]);
|
2013-03-07 14:15:12 +00:00
|
|
|
} else {
|
2013-08-26 22:54:13 +00:00
|
|
|
ok( true, "no ajax; skipping jQuery.support[' " + i + " ']" );
|
2013-03-07 14:15:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
})();
|
|
|
|
|
2013-09-07 00:30:19 +00:00
|
|
|
// Support: Safari 5.1
|
|
|
|
// Shameless browser-sniff, but Safari 5.1 mishandles CSP
|
|
|
|
if ( !( typeof navigator !== "undefined" &&
|
|
|
|
(/ AppleWebKit\/\d.*? Version\/(\d+)/.exec(navigator.userAgent) || [])[1] < 6 ) ) {
|
|
|
|
|
|
|
|
testIframeWithCallback( "Check CSP (https://developer.mozilla.org/en-US/docs/Security/CSP) restrictions",
|
|
|
|
"support/csp.php",
|
|
|
|
function( support ) {
|
|
|
|
expect( 1 );
|
|
|
|
deepEqual( jQuery.extend( {}, support ), computedSupport, "No violations of CSP polices" );
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|