mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
68aa2ef757
`CSS.supports( "selector(...)" )` has different semantics than selectors passed to `querySelectorAll`. Apart from the fact that the former returns `false` for unrecognized selectors and the latter throws, `qSA` is more forgiving and accepts some invalid selectors, auto-correcting them where needed - for example, mismatched brackers are auto-closed. This behavior difference is breaking for many users. To add to that, a recent CSSWG resolution made `:is()` & `:where()` the only pseudos with forgiving parsing; browsers are in the process of making `:has()` parsing unforgiving. Taking all that into account, we go back to our previous try-catch approach without relying on `CSS.supports( "selector(...)" )`. The only difference is we detect forgiving parsing in `:has()` and mark the selector as buggy. The PR also updates `playwright-webkit` so that we test against a version of WebKit that already has non-forgiving `:has()`. Fixes gh-5194 Closes gh-5206 Ref gh-5098 Ref gh-5107 Ref w3c/csswg-drafts#7676 Co-authored-by: Richard Gibson <richard.gibson@gmail.com>
206 lines
5.3 KiB
JavaScript
206 lines
5.3 KiB
JavaScript
QUnit.module( "support", { afterEach: moduleTeardown } );
|
|
|
|
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;
|
|
}
|
|
|
|
if ( includesModule( "css" ) ) {
|
|
testIframe(
|
|
"body background is not lost if set prior to loading jQuery (trac-9239)",
|
|
"support/bodyBackground.html",
|
|
function( assert, jQuery, window, document, color, support ) {
|
|
assert.expect( 2 );
|
|
var okValue = {
|
|
"#000000": true,
|
|
"rgb(0, 0, 0)": true
|
|
};
|
|
assert.ok( okValue[ color ], "color was not reset (" + color + ")" );
|
|
|
|
assert.deepEqual( jQuery.extend( {}, support ), computedSupport,
|
|
"Same support properties" );
|
|
}
|
|
);
|
|
}
|
|
|
|
// This test checks CSP only for browsers with "Content-Security-Policy" header support
|
|
// i.e. no IE
|
|
testIframe(
|
|
"Check CSP (https://developer.mozilla.org/en-US/docs/Security/CSP) restrictions",
|
|
"mock.php?action=cspFrame",
|
|
function( assert, jQuery, window, document, support ) {
|
|
var done = assert.async();
|
|
|
|
assert.expect( 2 );
|
|
assert.deepEqual( jQuery.extend( {}, support ), computedSupport,
|
|
"No violations of CSP polices" );
|
|
|
|
supportjQuery.get( baseURL + "support/csp.log" ).done( function( data ) {
|
|
assert.equal( data, "", "No log request should be sent" );
|
|
supportjQuery.get( baseURL + "mock.php?action=cspClean" ).done( done );
|
|
} );
|
|
}
|
|
);
|
|
|
|
( function() {
|
|
var expected, browserKey,
|
|
userAgent = window.navigator.userAgent,
|
|
expectedMap = {
|
|
ie_11: {
|
|
cssHas: true,
|
|
reliableTrDimensions: false
|
|
},
|
|
chrome: {
|
|
cssHas: false,
|
|
reliableTrDimensions: true
|
|
},
|
|
safari: {
|
|
cssHas: false,
|
|
reliableTrDimensions: true
|
|
},
|
|
webkit: {
|
|
cssHas: true,
|
|
reliableTrDimensions: true
|
|
},
|
|
firefox_102: {
|
|
cssHas: true,
|
|
reliableTrDimensions: false
|
|
},
|
|
firefox: {
|
|
cssHas: true,
|
|
reliableTrDimensions: false
|
|
},
|
|
ios_14_15_3: {
|
|
cssHas: true,
|
|
reliableTrDimensions: true
|
|
},
|
|
ios: {
|
|
cssHas: false,
|
|
reliableTrDimensions: true
|
|
}
|
|
};
|
|
|
|
// Make the selector-native build pass tests.
|
|
for ( browserKey in expectedMap ) {
|
|
if ( !includesModule( "selector" ) ) {
|
|
delete expectedMap[ browserKey ].cssHas;
|
|
}
|
|
}
|
|
|
|
if ( document.documentMode ) {
|
|
expected = expectedMap.ie_11;
|
|
} else if ( /chrome/i.test( userAgent ) ) {
|
|
|
|
// Catches Edge, Chrome on Android & Opera as well.
|
|
expected = expectedMap.chrome;
|
|
} else if ( /firefox\/102\./i.test( userAgent ) ) {
|
|
expected = expectedMap.firefox_102;
|
|
} else if ( /firefox/i.test( userAgent ) ) {
|
|
expected = expectedMap.firefox;
|
|
} else if ( /iphone os (?:14_|15_[0123])/i.test( userAgent ) ) {
|
|
expected = expectedMap.ios_14_15_3;
|
|
} else if ( /(?:iphone|ipad);.*(?:iphone)? os \d+_/i.test( userAgent ) ) {
|
|
expected = expectedMap.ios;
|
|
} 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;
|
|
} else if ( /\b\d+(\.\d+)+ safari/i.test( userAgent ) ) {
|
|
expected = expectedMap.safari;
|
|
}
|
|
|
|
QUnit.test( "Verify that support tests resolve as expected per browser", function( assert ) {
|
|
if ( !expected ) {
|
|
assert.expect( 1 );
|
|
assert.ok( false, "Known client: " + userAgent );
|
|
}
|
|
|
|
var i, prop,
|
|
j = 0;
|
|
|
|
for ( prop in computedSupport ) {
|
|
j++;
|
|
}
|
|
|
|
// 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++;
|
|
}
|
|
}
|
|
|
|
assert.expect( j );
|
|
|
|
for ( i in expected ) {
|
|
assert.equal( computedSupport[ i ], expected[ i ],
|
|
"jQuery.support['" + i + "']: " + computedSupport[ i ] +
|
|
", expected['" + i + "']: " + expected[ i ] +
|
|
";\nUser Agent: " + navigator.userAgent );
|
|
}
|
|
} );
|
|
|
|
QUnit.test( "Verify support tests are failing in one of tested browsers",
|
|
function( assert ) {
|
|
|
|
var prop, browserKey, supportTestName,
|
|
i = 0,
|
|
supportProps = {},
|
|
failingSupportProps = {};
|
|
|
|
for ( prop in computedSupport ) {
|
|
i++;
|
|
}
|
|
|
|
// 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++;
|
|
}
|
|
}
|
|
|
|
assert.expect( i );
|
|
|
|
// Record all support props and the failing ones and ensure every test
|
|
// is failing at least once.
|
|
for ( browserKey in expectedMap ) {
|
|
for ( supportTestName in expectedMap[ browserKey ] ) {
|
|
supportProps[ supportTestName ] = true;
|
|
if ( !expectedMap[ browserKey ][ supportTestName ] ) {
|
|
failingSupportProps[ supportTestName ] = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
for ( supportTestName in supportProps ) {
|
|
assert.ok( failingSupportProps[ supportTestName ],
|
|
"jQuery.support['" + supportTestName +
|
|
"'] is expected to fail at least in one browser" );
|
|
}
|
|
} );
|
|
|
|
} )();
|