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-10-30 12:20:38 +00:00
|
|
|
// This test checkes CSP only for browsers with "Content-Security-Policy" header support
|
|
|
|
// i.e. no old WebKit or old Firefox
|
|
|
|
testIframeWithCallback( "Check CSP (https://developer.mozilla.org/en-US/docs/Security/CSP) restrictions",
|
|
|
|
"support/csp.php",
|
|
|
|
function( support ) {
|
|
|
|
expect( 2 );
|
|
|
|
deepEqual( jQuery.extend( {}, support ), computedSupport, "No violations of CSP polices" );
|
|
|
|
|
|
|
|
stop();
|
|
|
|
|
|
|
|
supportjQuery.get( "data/support/csp.log" ).done(function( data ) {
|
|
|
|
equal( data, "", "No log request should be sent" );
|
|
|
|
supportjQuery.get( "data/support/csp-clean.php" ).done( start );
|
|
|
|
});
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2013-03-07 14:15:12 +00:00
|
|
|
(function() {
|
2013-11-10 23:42:37 +00:00
|
|
|
var expected,
|
2013-03-07 14:15:12 +00:00
|
|
|
userAgent = window.navigator.userAgent;
|
|
|
|
|
|
|
|
if ( /chrome/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,
|
2013-11-10 23:42:37 +00:00
|
|
|
"pixelPosition": true,
|
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
|
|
|
};
|
2014-01-22 20:35:09 +00:00
|
|
|
} else if ( /trident\/7\.0/i.test( userAgent ) ) {
|
|
|
|
expected = {
|
|
|
|
"ajax": true,
|
|
|
|
"boxSizingReliable": false,
|
|
|
|
"checkClone": true,
|
|
|
|
"checkOn": true,
|
|
|
|
"clearCloneStyle": false,
|
|
|
|
"cors": true,
|
|
|
|
"focusinBubbles": true,
|
2014-01-22 22:50:36 +00:00
|
|
|
"noCloneChecked": false,
|
2014-01-22 20:35:09 +00:00
|
|
|
"optDisabled": true,
|
|
|
|
"optSelected": false,
|
|
|
|
"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
|
|
|
};
|
2014-01-22 20:49:10 +00:00
|
|
|
} else if ( /7\.0(\.\d+|) safari/i.test( userAgent ) ) {
|
2014-01-22 20:35:09 +00:00
|
|
|
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
|
|
|
|
};
|
2014-01-22 20:49:10 +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
|
|
|
};
|
2014-01-22 20:49:10 +00:00
|
|
|
} else if ( /5\.1(\.\d+|) safari/i.test( userAgent ) ) {
|
2013-09-11 01:35:46 +00:00
|
|
|
expected = {
|
2014-03-31 21:05:49 +00:00
|
|
|
"ajax": true,
|
2013-09-11 01:35:46 +00:00
|
|
|
"boxSizingReliable": true,
|
2014-03-31 21:05:49 +00:00
|
|
|
"checkClone": false,
|
|
|
|
"checkOn": false,
|
2013-09-11 01:35:46 +00:00
|
|
|
"clearCloneStyle": true,
|
2014-03-31 21:05:49 +00:00
|
|
|
"cors": true,
|
|
|
|
"focusinBubbles": false,
|
|
|
|
"noCloneChecked": true,
|
|
|
|
"optDisabled": true,
|
|
|
|
"optSelected": true,
|
2013-09-11 01:35:46 +00:00
|
|
|
"pixelPosition": false,
|
2014-03-31 21:05:49 +00:00
|
|
|
"radioValue": true,
|
|
|
|
"reliableMarginRight": true
|
2013-09-11 01:35:46 +00:00
|
|
|
};
|
2013-03-07 14:15:12 +00:00
|
|
|
} else if ( /firefox/i.test( userAgent ) ) {
|
|
|
|
expected = {
|
2013-08-26 22:54:13 +00:00
|
|
|
"ajax": true,
|
2013-11-10 23:42:37 +00:00
|
|
|
"boxSizingReliable": true,
|
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
|
|
|
};
|
2014-03-13 00:46:18 +00:00
|
|
|
} else if ( /iphone os (?:6|7)_/i.test( userAgent ) ) {
|
2014-01-27 19:16:06 +00:00
|
|
|
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
|
|
|
|
};
|
2014-03-31 21:05:49 +00:00
|
|
|
} else if ( /android 2\.3/i.test( userAgent ) ) {
|
|
|
|
expected = {
|
|
|
|
"ajax": true,
|
|
|
|
"boxSizingReliable": true,
|
|
|
|
"checkClone": true,
|
|
|
|
"checkOn": false,
|
|
|
|
"clearCloneStyle": false,
|
|
|
|
"cors": true,
|
|
|
|
"focusinBubbles": false,
|
|
|
|
"noCloneChecked": true,
|
|
|
|
"optDisabled": false,
|
|
|
|
"optSelected": true,
|
|
|
|
"pixelPosition": false,
|
|
|
|
"radioValue": true,
|
|
|
|
"reliableMarginRight": false
|
|
|
|
};
|
|
|
|
} else if ( /android 4\.[0-3]/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
|
|
|
}
|
|
|
|
|
|
|
|
if ( expected ) {
|
2014-03-31 21:05:49 +00:00
|
|
|
test( "Verify that the support tests resolve as expected per browser", function() {
|
2013-03-07 14:15:12 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
})();
|