2015-08-16 06:59:58 +00:00
|
|
|
QUnit.module( "support", { teardown: 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;
|
|
|
|
}
|
|
|
|
|
2012-06-11 01:54:16 +00:00
|
|
|
if ( jQuery.css ) {
|
2016-04-10 19:42:44 +00:00
|
|
|
testIframe(
|
2015-08-16 03:45:28 +00:00
|
|
|
"body background is not lost if set prior to loading jQuery (#9239)",
|
|
|
|
"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",
|
2013-10-30 12:20:38 +00:00
|
|
|
"support/csp.php",
|
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
|
|
|
|
2015-08-16 06:59:58 +00:00
|
|
|
supportjQuery.get( "data/support/csp.log" ).done( function( data ) {
|
2015-08-16 03:45:28 +00:00
|
|
|
assert.equal( data, "", "No log request should be sent" );
|
2015-09-08 00:26:29 +00:00
|
|
|
supportjQuery.get( "data/support/csp-clean.php" ).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() {
|
2017-05-15 18:37:14 +00:00
|
|
|
var expected,
|
2013-03-07 14:15:12 +00:00
|
|
|
userAgent = window.navigator.userAgent;
|
|
|
|
|
2015-06-16 12:44:24 +00:00
|
|
|
if ( /edge\//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,
|
2017-05-15 18:37:14 +00:00
|
|
|
"clearCloneStyle": true,
|
2013-08-26 22:54:13 +00:00
|
|
|
"cors": true,
|
2014-12-10 14:48:55 +00:00
|
|
|
"createHTMLDocument": true,
|
2015-05-12 22:15:19 +00:00
|
|
|
"focusin": false,
|
2013-08-26 22:54:13 +00:00
|
|
|
"noCloneChecked": true,
|
|
|
|
"optSelected": true,
|
2017-09-18 15:59:50 +00:00
|
|
|
"pixelBoxStyles": true,
|
2013-11-10 23:42:37 +00:00
|
|
|
"pixelPosition": true,
|
2015-05-08 03:16:18 +00:00
|
|
|
"radioValue": true,
|
2017-07-18 19:40:41 +00:00
|
|
|
"reliableMarginLeft": true,
|
|
|
|
"scrollboxSize": true
|
2013-03-07 14:15:12 +00:00
|
|
|
};
|
2014-12-09 20:05:31 +00:00
|
|
|
} else if ( /(msie 10\.0|trident\/7\.0)/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": false,
|
2013-08-26 22:54:13 +00:00
|
|
|
"checkClone": true,
|
|
|
|
"checkOn": true,
|
|
|
|
"clearCloneStyle": false,
|
|
|
|
"cors": true,
|
2014-12-10 14:48:55 +00:00
|
|
|
"createHTMLDocument": true,
|
2015-05-12 22:15:19 +00:00
|
|
|
"focusin": true,
|
2013-08-26 22:54:13 +00:00
|
|
|
"noCloneChecked": false,
|
|
|
|
"optSelected": false,
|
2017-09-18 15:59:50 +00:00
|
|
|
"pixelBoxStyles": true,
|
2013-08-26 22:54:13 +00:00
|
|
|
"pixelPosition": true,
|
2015-05-08 03:16:18 +00:00
|
|
|
"radioValue": false,
|
2017-07-18 19:40:41 +00:00
|
|
|
"reliableMarginLeft": true,
|
|
|
|
"scrollboxSize": 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,
|
2014-12-10 14:48:55 +00:00
|
|
|
"createHTMLDocument": true,
|
2015-05-12 22:15:19 +00:00
|
|
|
"focusin": true,
|
2013-08-26 22:54:13 +00:00
|
|
|
"noCloneChecked": false,
|
|
|
|
"optSelected": false,
|
2017-09-18 15:59:50 +00:00
|
|
|
"pixelBoxStyles": true,
|
2013-08-26 22:54:13 +00:00
|
|
|
"pixelPosition": true,
|
2015-05-08 03:16:18 +00:00
|
|
|
"radioValue": false,
|
2017-07-18 19:40:41 +00:00
|
|
|
"reliableMarginLeft": true,
|
|
|
|
"scrollboxSize": "absolute"
|
2013-03-07 14:15:12 +00:00
|
|
|
};
|
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).
|
|
|
|
expected = {
|
|
|
|
"ajax": true,
|
|
|
|
"boxSizingReliable": true,
|
|
|
|
"checkClone": true,
|
|
|
|
"checkOn": true,
|
|
|
|
"clearCloneStyle": true,
|
|
|
|
"cors": true,
|
|
|
|
"createHTMLDocument": true,
|
|
|
|
"focusin": false,
|
|
|
|
"noCloneChecked": true,
|
|
|
|
"optSelected": true,
|
2017-09-18 15:59:50 +00:00
|
|
|
"pixelBoxStyles": true,
|
2015-06-13 22:50:05 +00:00
|
|
|
"pixelPosition": true,
|
2015-05-08 03:16:18 +00:00
|
|
|
"radioValue": true,
|
2017-07-18 19:40:41 +00:00
|
|
|
"reliableMarginLeft": true,
|
|
|
|
"scrollboxSize": true
|
2015-06-13 22:50:05 +00:00
|
|
|
};
|
2017-10-18 15:59:22 +00:00
|
|
|
} else if ( /\b11\.\d(\.\d+)* safari/i.test( userAgent ) ) {
|
|
|
|
expected = {
|
|
|
|
"ajax": true,
|
|
|
|
"boxSizingReliable": true,
|
|
|
|
"checkClone": true,
|
|
|
|
"checkOn": true,
|
|
|
|
"clearCloneStyle": true,
|
|
|
|
"cors": true,
|
|
|
|
"createHTMLDocument": true,
|
|
|
|
"focusin": false,
|
|
|
|
"noCloneChecked": true,
|
|
|
|
"optSelected": true,
|
|
|
|
"pixelBoxStyles": true,
|
|
|
|
"pixelPosition": true,
|
|
|
|
"radioValue": true,
|
|
|
|
"reliableMarginLeft": true,
|
|
|
|
"scrollboxSize": true
|
|
|
|
};
|
2016-09-19 16:55:12 +00:00
|
|
|
} else if ( /\b(?:9|10)\.\d(\.\d+)* safari/i.test( userAgent ) ) {
|
2015-10-18 21:26:56 +00:00
|
|
|
expected = {
|
|
|
|
"ajax": true,
|
|
|
|
"boxSizingReliable": true,
|
|
|
|
"checkClone": true,
|
|
|
|
"checkOn": true,
|
|
|
|
"clearCloneStyle": true,
|
|
|
|
"cors": true,
|
|
|
|
"createHTMLDocument": true,
|
|
|
|
"focusin": false,
|
|
|
|
"noCloneChecked": true,
|
|
|
|
"optSelected": true,
|
2017-09-18 15:59:50 +00:00
|
|
|
"pixelBoxStyles": false,
|
2015-10-18 21:26:56 +00:00
|
|
|
"pixelPosition": false,
|
|
|
|
"radioValue": true,
|
2017-07-18 19:40:41 +00:00
|
|
|
"reliableMarginLeft": true,
|
|
|
|
"scrollboxSize": true
|
2015-10-18 21:26:56 +00:00
|
|
|
};
|
2014-12-09 20:05:31 +00:00
|
|
|
} else if ( /firefox/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,
|
2014-12-10 14:48:55 +00:00
|
|
|
"createHTMLDocument": true,
|
2015-05-12 22:15:19 +00:00
|
|
|
"focusin": false,
|
2013-08-26 22:54:13 +00:00
|
|
|
"noCloneChecked": true,
|
|
|
|
"optSelected": true,
|
2017-09-18 15:59:50 +00:00
|
|
|
"pixelBoxStyles": true,
|
2014-12-09 20:05:31 +00:00
|
|
|
"pixelPosition": true,
|
2015-05-08 03:16:18 +00:00
|
|
|
"radioValue": true,
|
2017-07-18 19:40:41 +00:00
|
|
|
"reliableMarginLeft": false,
|
|
|
|
"scrollboxSize": true
|
2013-03-07 14:15:12 +00:00
|
|
|
};
|
2017-11-20 22:46:31 +00:00
|
|
|
} else if ( /iphone os 11_/i.test( userAgent ) ) {
|
|
|
|
expected = {
|
|
|
|
"ajax": true,
|
|
|
|
"boxSizingReliable": true,
|
|
|
|
"checkClone": true,
|
|
|
|
"checkOn": true,
|
|
|
|
"clearCloneStyle": true,
|
|
|
|
"cors": true,
|
|
|
|
"createHTMLDocument": true,
|
|
|
|
"focusin": false,
|
|
|
|
"noCloneChecked": true,
|
|
|
|
"optSelected": true,
|
|
|
|
"pixelBoxStyles": true,
|
|
|
|
"pixelPosition": true,
|
|
|
|
"radioValue": true,
|
|
|
|
"reliableMarginLeft": true,
|
|
|
|
"scrollboxSize": true
|
|
|
|
};
|
2016-09-19 16:55:12 +00:00
|
|
|
} else if ( /iphone os (?:9|10)_/i.test( userAgent ) ) {
|
2015-10-30 18:13:45 +00:00
|
|
|
expected = {
|
|
|
|
"ajax": true,
|
|
|
|
"boxSizingReliable": true,
|
|
|
|
"checkClone": true,
|
|
|
|
"checkOn": true,
|
|
|
|
"clearCloneStyle": true,
|
|
|
|
"cors": true,
|
|
|
|
"createHTMLDocument": true,
|
|
|
|
"focusin": false,
|
|
|
|
"noCloneChecked": true,
|
|
|
|
"optSelected": true,
|
2017-09-18 15:59:50 +00:00
|
|
|
"pixelBoxStyles": false,
|
2015-10-30 18:13:45 +00:00
|
|
|
"pixelPosition": false,
|
|
|
|
"radioValue": true,
|
2017-07-18 19:40:41 +00:00
|
|
|
"reliableMarginLeft": true,
|
|
|
|
"scrollboxSize": true
|
2015-10-30 18:13:45 +00:00
|
|
|
};
|
2015-10-30 18:16:27 +00:00
|
|
|
} else if ( /iphone os 8_/i.test( userAgent ) ) {
|
2014-12-13 20:41:04 +00:00
|
|
|
expected = {
|
|
|
|
"ajax": true,
|
|
|
|
"boxSizingReliable": true,
|
|
|
|
"checkClone": true,
|
|
|
|
"checkOn": true,
|
|
|
|
"clearCloneStyle": true,
|
|
|
|
"cors": true,
|
|
|
|
"createHTMLDocument": false,
|
2015-05-12 22:15:19 +00:00
|
|
|
"focusin": false,
|
2014-12-13 20:41:04 +00:00
|
|
|
"noCloneChecked": true,
|
|
|
|
"optSelected": true,
|
2017-09-18 15:59:50 +00:00
|
|
|
"pixelBoxStyles": false,
|
2014-12-13 20:41:04 +00:00
|
|
|
"pixelPosition": false,
|
2015-05-08 03:16:18 +00:00
|
|
|
"radioValue": true,
|
2017-07-18 19:40:41 +00:00
|
|
|
"reliableMarginLeft": true,
|
|
|
|
"scrollboxSize": true
|
2014-12-13 20:41:04 +00:00
|
|
|
};
|
2015-10-30 18:16:27 +00:00
|
|
|
} else if ( /iphone os 7_/i.test( userAgent ) ) {
|
2013-03-07 14:15:12 +00:00
|
|
|
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,
|
2014-12-10 14:48:55 +00:00
|
|
|
"createHTMLDocument": true,
|
2015-05-12 22:15:19 +00:00
|
|
|
"focusin": false,
|
2013-08-26 22:54:13 +00:00
|
|
|
"noCloneChecked": true,
|
|
|
|
"optSelected": true,
|
2017-09-18 15:59:50 +00:00
|
|
|
"pixelBoxStyles": false,
|
2014-12-09 20:05:31 +00:00
|
|
|
"pixelPosition": false,
|
2015-05-08 03:16:18 +00:00
|
|
|
"radioValue": true,
|
2017-07-18 19:40:41 +00:00
|
|
|
"reliableMarginLeft": true,
|
|
|
|
"scrollboxSize": true
|
2013-03-07 14:15:12 +00:00
|
|
|
};
|
2014-12-09 20:05:31 +00:00
|
|
|
} else if ( /android 4\.[0-3]/i.test( userAgent ) ) {
|
2014-01-27 19:16:06 +00:00
|
|
|
expected = {
|
|
|
|
"ajax": true,
|
|
|
|
"boxSizingReliable": true,
|
2014-12-09 20:05:31 +00:00
|
|
|
"checkClone": false,
|
|
|
|
"checkOn": false,
|
2014-01-27 19:16:06 +00:00
|
|
|
"clearCloneStyle": true,
|
|
|
|
"cors": true,
|
2014-12-10 14:48:55 +00:00
|
|
|
"createHTMLDocument": true,
|
2015-05-12 22:15:19 +00:00
|
|
|
"focusin": false,
|
2014-01-27 19:16:06 +00:00
|
|
|
"noCloneChecked": true,
|
|
|
|
"optSelected": true,
|
2017-09-18 15:59:50 +00:00
|
|
|
"pixelBoxStyles": false,
|
2014-01-27 19:16:06 +00:00
|
|
|
"pixelPosition": false,
|
2015-05-08 03:16:18 +00:00
|
|
|
"radioValue": true,
|
2017-07-18 19:40:41 +00:00
|
|
|
"reliableMarginLeft": false,
|
|
|
|
"scrollboxSize": true
|
2014-03-31 21:05:49 +00:00
|
|
|
};
|
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
|
|
|
|
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 ) {
|
|
|
|
if ( jQuery.ajax || i !== "ajax" && i !== "cors" ) {
|
|
|
|
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
|
|
|
|
2015-08-16 06:59:58 +00:00
|
|
|
} )();
|