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-06-28 10:39:01 +00:00
|
|
|
if ( includesModule( "css" ) ) {
|
2016-04-10 19:42:44 +00:00
|
|
|
testIframe(
|
2022-01-04 15:27:18 +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
|
2019-04-29 20:56:09 +00:00
|
|
|
// i.e. no IE
|
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
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2023-07-10 16:33:05 +00:00
|
|
|
testIframe(
|
|
|
|
"Verify correctness of support tests with bootstrap CSS on the page",
|
|
|
|
"support/bootstrap.html",
|
|
|
|
function( assert, jQuery, window, document, bodyStyle, support ) {
|
|
|
|
assert.expect( 2 );
|
|
|
|
assert.strictEqual( bodyStyle.boxSizing, "border-box",
|
|
|
|
"border-box applied on body by Bootstrap" );
|
|
|
|
assert.deepEqual( jQuery.extend( {}, support ), computedSupport,
|
|
|
|
"Same support properties" );
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2015-08-16 06:59:58 +00:00
|
|
|
( function() {
|
2022-11-21 22:23:39 +00:00
|
|
|
var expected, browserKey,
|
2018-04-23 12:16:21 +00:00
|
|
|
userAgent = window.navigator.userAgent,
|
|
|
|
expectedMap = {
|
2021-01-11 16:56:08 +00:00
|
|
|
ie_11: {
|
2023-02-14 09:11:40 +00:00
|
|
|
cssHas: true,
|
2022-09-19 18:56:02 +00:00
|
|
|
reliableTrDimensions: false
|
2021-01-11 16:56:08 +00:00
|
|
|
},
|
2023-04-04 22:25:20 +00:00
|
|
|
chrome_111: {
|
2023-02-14 09:11:40 +00:00
|
|
|
cssHas: false,
|
2022-09-19 18:56:02 +00:00
|
|
|
reliableTrDimensions: true
|
2021-01-11 16:56:08 +00:00
|
|
|
},
|
2023-04-04 22:25:20 +00:00
|
|
|
chrome: {
|
|
|
|
cssHas: true,
|
|
|
|
reliableTrDimensions: true
|
|
|
|
},
|
|
|
|
safari_16_3: {
|
2023-02-14 09:11:40 +00:00
|
|
|
cssHas: false,
|
2022-09-19 18:56:02 +00:00
|
|
|
reliableTrDimensions: true
|
2021-01-11 16:56:08 +00:00
|
|
|
},
|
2023-04-04 22:25:20 +00:00
|
|
|
safari: {
|
2023-02-14 09:11:40 +00:00
|
|
|
cssHas: true,
|
2023-01-23 22:49:44 +00:00
|
|
|
reliableTrDimensions: true
|
|
|
|
},
|
2023-04-04 22:25:20 +00:00
|
|
|
webkit: {
|
2023-02-14 09:11:40 +00:00
|
|
|
cssHas: true,
|
2023-04-04 22:25:20 +00:00
|
|
|
reliableTrDimensions: true
|
2021-01-11 16:56:08 +00:00
|
|
|
},
|
2022-11-24 23:54:56 +00:00
|
|
|
firefox: {
|
2023-02-14 09:11:40 +00:00
|
|
|
cssHas: true,
|
2022-11-24 23:54:56 +00:00
|
|
|
reliableTrDimensions: false
|
|
|
|
},
|
2023-02-14 09:11:40 +00:00
|
|
|
ios_14_15_3: {
|
|
|
|
cssHas: true,
|
|
|
|
reliableTrDimensions: true
|
|
|
|
},
|
2023-04-04 22:25:20 +00:00
|
|
|
ios_15_4_16_3: {
|
2023-02-14 09:11:40 +00:00
|
|
|
cssHas: false,
|
2022-09-19 18:56:02 +00:00
|
|
|
reliableTrDimensions: true
|
2023-04-04 22:25:20 +00:00
|
|
|
},
|
|
|
|
ios: {
|
|
|
|
cssHas: true,
|
|
|
|
reliableTrDimensions: true
|
2021-01-11 16:56:08 +00:00
|
|
|
}
|
2018-04-23 12:16:21 +00:00
|
|
|
};
|
2013-03-07 14:15:12 +00:00
|
|
|
|
2022-11-21 22:23:39 +00:00
|
|
|
// Make the selector-native build pass tests.
|
|
|
|
for ( browserKey in expectedMap ) {
|
|
|
|
if ( !includesModule( "selector" ) ) {
|
2023-02-14 09:11:40 +00:00
|
|
|
delete expectedMap[ browserKey ].cssHas;
|
2022-11-21 22:23:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-22 15:49:28 +00:00
|
|
|
if ( document.documentMode ) {
|
2019-04-29 20:56:09 +00:00
|
|
|
expected = expectedMap.ie_11;
|
2023-04-04 22:25:20 +00:00
|
|
|
} else if ( /\b(?:headless)?chrome\/(?:10\d|11[01])\b/i.test( userAgent ) ) {
|
|
|
|
expected = expectedMap.chrome_111;
|
|
|
|
} else if ( /\b(?:headless)?chrome\//i.test( userAgent ) ) {
|
2015-08-16 06:59:58 +00:00
|
|
|
|
2020-09-22 15:49:28 +00:00
|
|
|
// Catches Edge, Chrome on Android & Opera as well.
|
2018-04-23 12:16:21 +00:00
|
|
|
expected = expectedMap.chrome;
|
2023-04-04 22:25:20 +00:00
|
|
|
} else if ( /\bfirefox\//i.test( userAgent ) ) {
|
2018-04-23 12:16:21 +00:00
|
|
|
expected = expectedMap.firefox;
|
2023-04-04 22:25:20 +00:00
|
|
|
} else if ( /\biphone os (?:14_|15_[0123])/i.test( userAgent ) ) {
|
2023-02-14 09:11:40 +00:00
|
|
|
expected = expectedMap.ios_14_15_3;
|
2023-04-04 22:25:20 +00:00
|
|
|
} else if ( /\biphone os (?:15_|16_[0123])/i.test( userAgent ) ) {
|
|
|
|
expected = expectedMap.ios_15_4_16_3;
|
|
|
|
} else if ( /\b(?:iphone|ipad);.*(?:iphone)? os \d+_/i.test( userAgent ) ) {
|
2018-11-12 17:55:47 +00:00
|
|
|
expected = expectedMap.ios;
|
2023-01-23 22:49:44 +00:00
|
|
|
} else if ( typeof URLSearchParams !== "undefined" &&
|
|
|
|
|
|
|
|
// `karma-webkit-launcher` adds `test_browser=Playwright` to the query string.
|
|
|
|
// The normal way of using user agent to detect the browser won't help
|
|
|
|
// as on macOS Playwright doesn't specify the `Safari` token but on Linux
|
|
|
|
// it does.
|
|
|
|
// See https://github.com/google/karma-webkit-launcher#detected-if-safari-or-playwright-is-used
|
|
|
|
new URLSearchParams( document.referrer || window.location.search ).get(
|
|
|
|
"test_browser"
|
|
|
|
) === "Playwright"
|
|
|
|
) {
|
|
|
|
expected = expectedMap.webkit;
|
2023-04-04 22:25:20 +00:00
|
|
|
} else if ( /\bversion\/(?:15|16\.[0123])(?:\.\d+)* safari/i.test( userAgent ) ) {
|
|
|
|
expected = expectedMap.safari_16_3;
|
|
|
|
} else if ( /\bversion\/\d+(?:\.\d+)+ safari/i.test( userAgent ) ) {
|
2023-01-23 22:49:44 +00:00
|
|
|
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
|
|
|
|
2019-08-19 16:41:03 +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 ) {
|
2019-04-29 20:56:09 +00:00
|
|
|
assert.equal( computedSupport[ i ], expected[ i ],
|
|
|
|
"jQuery.support['" + i + "']: " + computedSupport[ i ] +
|
2023-01-23 22:49:44 +00:00
|
|
|
", expected['" + i + "']: " + expected[ i ] +
|
|
|
|
";\nUser Agent: " + navigator.userAgent );
|
2015-05-08 03:16:18 +00:00
|
|
|
}
|
2016-01-27 11:13:32 +00:00
|
|
|
} );
|
2013-03-07 14:15:12 +00:00
|
|
|
|
2019-05-13 19:39:56 +00:00
|
|
|
QUnit.test( "Verify support tests are failing in one of tested browsers",
|
|
|
|
function( assert ) {
|
2018-04-23 12:16:21 +00:00
|
|
|
|
|
|
|
var prop, browserKey, supportTestName,
|
|
|
|
i = 0,
|
|
|
|
supportProps = {},
|
2019-04-29 20:56:09 +00:00
|
|
|
failingSupportProps = {};
|
2018-04-23 12:16:21 +00:00
|
|
|
|
|
|
|
for ( prop in computedSupport ) {
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
2019-08-19 16:41:03 +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 );
|
|
|
|
|
2019-04-29 20:56:09 +00:00
|
|
|
// Record all support props and the failing ones and ensure every test
|
|
|
|
// is failing at least once.
|
2018-04-23 12:16:21 +00:00
|
|
|
for ( browserKey in expectedMap ) {
|
|
|
|
for ( supportTestName in expectedMap[ browserKey ] ) {
|
|
|
|
supportProps[ supportTestName ] = true;
|
2019-08-19 16:41:03 +00:00
|
|
|
if ( !expectedMap[ browserKey ][ supportTestName ] ) {
|
2018-04-23 12:16:21 +00:00
|
|
|
failingSupportProps[ supportTestName ] = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for ( supportTestName in supportProps ) {
|
2019-04-29 20:56:09 +00:00
|
|
|
assert.ok( failingSupportProps[ supportTestName ],
|
|
|
|
"jQuery.support['" + supportTestName +
|
|
|
|
"'] is expected to fail at least in one browser" );
|
2018-04-23 12:16:21 +00:00
|
|
|
}
|
|
|
|
} );
|
|
|
|
|
2015-08-16 06:59:58 +00:00
|
|
|
} )();
|