2011-05-10 10:23:53 +00:00
|
|
|
module("support", { teardown: moduleTeardown });
|
|
|
|
|
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-01-28 04:34:38 +00:00
|
|
|
var okValue = {
|
2012-06-11 01:54:16 +00:00
|
|
|
"#000000": true,
|
|
|
|
"rgb(0, 0, 0)": true
|
|
|
|
};
|
|
|
|
ok( okValue[ color ], "color was not reset (" + color + ")" );
|
2011-10-31 22:24:34 +00:00
|
|
|
|
2013-01-28 04:34:38 +00:00
|
|
|
deepEqual( jQuery.extend( {}, support ), jQuery.support, "Same support properties" );
|
2012-06-11 01:54:16 +00:00
|
|
|
});
|
|
|
|
}
|
2011-08-04 22:56:49 +00:00
|
|
|
|
2013-03-04 04:20:25 +00:00
|
|
|
testIframeWithCallback( "A non-1 zoom on body doesn't cause WebKit to fail box-sizing test", "support/boxSizing.html", function( boxSizing ) {
|
|
|
|
expect( 1 );
|
|
|
|
equal( boxSizing, jQuery.support.boxSizing, "box-sizing properly detected on page with non-1 body zoom" );
|
|
|
|
});
|
|
|
|
|
2012-08-19 21:41:43 +00:00
|
|
|
testIframeWithCallback( "A background on the testElement does not cause IE8 to crash (#9823)", "support/testElementCrash.html", function() {
|
2013-01-28 04:34:38 +00:00
|
|
|
expect( 1 );
|
2011-08-04 22:56:49 +00:00
|
|
|
ok( true, "IE8 does not crash" );
|
|
|
|
});
|
2011-11-17 19:48:27 +00:00
|
|
|
|
2012-10-16 16:22:31 +00:00
|
|
|
testIframeWithCallback( "box-sizing does not affect jQuery.support.shrinkWrapBlocks", "support/shrinkWrapBlocks.html", function( shrinkWrapBlocks ) {
|
|
|
|
expect( 1 );
|
|
|
|
strictEqual( shrinkWrapBlocks, jQuery.support.shrinkWrapBlocks, "jQuery.support.shrinkWrapBlocks properties are the same" );
|
|
|
|
});
|
2013-01-28 04:34:38 +00:00
|
|
|
|
2013-03-07 14:15:12 +00:00
|
|
|
(function() {
|
|
|
|
var expected,
|
|
|
|
userAgent = window.navigator.userAgent;
|
|
|
|
|
|
|
|
if ( /chrome/i.test( userAgent ) ) {
|
|
|
|
expected = {
|
|
|
|
"checkOn":true,
|
|
|
|
"optSelected":true,
|
|
|
|
"optDisabled":true,
|
|
|
|
"focusinBubbles":false,
|
|
|
|
"reliableMarginRight":true,
|
|
|
|
"noCloneChecked":true,
|
|
|
|
"radioValue":true,
|
|
|
|
"checkClone":true,
|
|
|
|
"ajax":true,
|
|
|
|
"cors":true,
|
|
|
|
"clearCloneStyle": true,
|
|
|
|
"boxSizing": true,
|
|
|
|
"boxSizingReliable": true,
|
|
|
|
"pixelPosition": false
|
|
|
|
};
|
|
|
|
} else if ( /opera.*version\/12\.1/i.test( userAgent ) ) {
|
|
|
|
expected = {
|
|
|
|
"checkOn":true,
|
|
|
|
"optSelected":true,
|
|
|
|
"optDisabled":true,
|
|
|
|
"focusinBubbles":false,
|
|
|
|
"reliableMarginRight":true,
|
|
|
|
"noCloneChecked":true,
|
|
|
|
"radioValue":false,
|
|
|
|
"checkClone":true,
|
|
|
|
"ajax":true,
|
|
|
|
"cors":true,
|
|
|
|
"clearCloneStyle": true,
|
|
|
|
"boxSizing": true,
|
|
|
|
"boxSizingReliable": true,
|
|
|
|
"pixelPosition": true
|
|
|
|
};
|
|
|
|
} else if ( /msie 10\.0/i.test( userAgent ) ) {
|
|
|
|
expected = {
|
|
|
|
"checkOn":true,
|
|
|
|
"optSelected":false,
|
|
|
|
"optDisabled":true,
|
|
|
|
"focusinBubbles":true,
|
|
|
|
"reliableMarginRight":true,
|
|
|
|
"noCloneChecked":false,
|
|
|
|
"radioValue":false,
|
|
|
|
"checkClone":true,
|
|
|
|
"ajax":true,
|
|
|
|
"cors":true,
|
|
|
|
"clearCloneStyle": false,
|
|
|
|
"boxSizing": true,
|
|
|
|
"boxSizingReliable": false,
|
|
|
|
"pixelPosition": true
|
|
|
|
};
|
|
|
|
} else if ( /msie 9\.0/i.test( userAgent ) ) {
|
|
|
|
expected = {
|
|
|
|
"checkOn":true,
|
|
|
|
"optSelected":false,
|
|
|
|
"optDisabled":true,
|
|
|
|
"focusinBubbles":true,
|
|
|
|
"reliableMarginRight":true,
|
|
|
|
"noCloneChecked":false,
|
|
|
|
"radioValue":false,
|
|
|
|
"checkClone":true,
|
|
|
|
"ajax":true,
|
|
|
|
"cors":false,
|
|
|
|
"clearCloneStyle": false,
|
|
|
|
"boxSizing": true,
|
|
|
|
"boxSizingReliable": false,
|
|
|
|
"pixelPosition": true
|
|
|
|
};
|
|
|
|
} else if ( /5\.1\.\d+ safari/i.test( userAgent ) ) {
|
|
|
|
expected = {
|
|
|
|
"checkOn":false,
|
|
|
|
"optSelected":true,
|
|
|
|
"optDisabled":true,
|
|
|
|
"focusinBubbles":false,
|
|
|
|
"reliableMarginRight":true,
|
|
|
|
"noCloneChecked":true,
|
|
|
|
"radioValue":true,
|
|
|
|
"checkClone":false,
|
|
|
|
"ajax":true,
|
|
|
|
"cors":true,
|
|
|
|
"clearCloneStyle": true,
|
|
|
|
"boxSizing": true,
|
|
|
|
"boxSizingReliable": true,
|
|
|
|
"pixelPosition": false
|
|
|
|
};
|
|
|
|
} else if ( /firefox/i.test( userAgent ) ) {
|
|
|
|
expected = {
|
|
|
|
"checkOn":true,
|
|
|
|
"optSelected":true,
|
|
|
|
"optDisabled":true,
|
|
|
|
"focusinBubbles":false,
|
|
|
|
"reliableMarginRight":true,
|
|
|
|
"noCloneChecked":true,
|
|
|
|
"radioValue":true,
|
|
|
|
"checkClone":true,
|
|
|
|
"ajax":true,
|
|
|
|
"cors":true,
|
|
|
|
"clearCloneStyle": true,
|
|
|
|
"boxSizing": true,
|
|
|
|
"boxSizingReliable": false,
|
|
|
|
"pixelPosition": true
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( expected ) {
|
|
|
|
test("Verify that the support tests resolve as expected per browser", function() {
|
|
|
|
var i, prop,
|
|
|
|
j = 0;
|
|
|
|
|
|
|
|
for ( prop in jQuery.support ) {
|
|
|
|
j++;
|
|
|
|
}
|
|
|
|
|
|
|
|
expect( j );
|
|
|
|
|
|
|
|
for ( i in expected ) {
|
|
|
|
if ( jQuery.ajax || i !== "ajax" && i !== "cors" ) {
|
|
|
|
equal( jQuery.support[i], expected[i], "jQuery.support['" + i + "']: " + jQuery.support[i] + ", expected['" + i + "']: " + expected[i]);
|
|
|
|
} else {
|
|
|
|
ok( true, "no ajax; skipping jQuery.support['" + i + "']" );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
})();
|
|
|
|
|
2013-02-08 04:43:21 +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 ), jQuery.support, "No violations of CSP polices" );
|
|
|
|
});
|
|
|
|
}
|