Skip to content

Commit 65b8503

Browse files
authored
CSS: Make the reliableTrDimensions support test work with Bootstrap CSS
Bootstrap 5 includes the following CSS on the page: ```css *, *::before, *::after { box-sizing: border-box; } ``` That threw our `reliableTrDimensions` support test off. This change fixes the support test and adds a unit test ensuring support test values on a page including Bootstrap 5 CSS are the same as on a page without it. Fixes gh-5270 Closes gh-5278 Ref gh-5279
1 parent e242187 commit 65b8503

File tree

5 files changed

+39
-2
lines changed

5 files changed

+39
-2
lines changed

Gruntfile.js

+4
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,10 @@ module.exports = function( grunt ) {
8989
destPrefix: "external"
9090
},
9191
files: {
92+
"bootstrap/bootstrap.css": "bootstrap/dist/css/bootstrap.css",
93+
"bootstrap/bootstrap.min.css": "bootstrap/dist/css/bootstrap.min.css",
94+
"bootstrap/bootstrap.min.css.map": "bootstrap/dist/css/bootstrap.min.css.map",
95+
9296
"core-js-bundle/core-js-bundle.js": "core-js-bundle/minified.js",
9397
"core-js-bundle/LICENSE": "core-js-bundle/LICENSE",
9498

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
"@babel/core": "7.10.5",
2828
"@babel/plugin-transform-for-of": "7.10.4",
2929
"@swc/core": "1.3.66",
30+
"bootstrap": "5.3.0",
3031
"colors": "1.4.0",
3132
"commitplease": "3.2.0",
3233
"core-js-bundle": "3.6.5",

src/css/support.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ support.reliableTrDimensions = function() {
2525
tr = document.createElement( "tr" );
2626

2727
table.style.cssText = "position:absolute;left:-11111px;border-collapse:separate";
28-
tr.style.cssText = "border:1px solid";
28+
tr.style.cssText = "box-sizing:content-box;border:1px solid";
2929

3030
// Support: Chrome 86+
3131
// Height set through cssText does not get applied.
@@ -38,7 +38,7 @@ support.reliableTrDimensions = function() {
3838
// display for all div elements is set to "inline",
3939
// which causes a problem only in Android Chrome, but
4040
// not consistently across all devices.
41-
// Ensuring the div is display: block
41+
// Ensuring the div is `display: block`
4242
// gets around this issue.
4343
div.style.display = "block";
4444

test/data/support/bootstrap.html

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8" />
5+
<link rel="stylesheet" href="../../../external/bootstrap/bootstrap.min.css" class="stylesheet">
6+
</head>
7+
<body>
8+
<div>
9+
<script src="../../jquery.js"></script>
10+
<script src="../iframeTest.js"></script>
11+
<script src="getComputedSupport.js"></script>
12+
</div>
13+
<script>
14+
startIframeTest(
15+
getComputedStyle( document.body ),
16+
getComputedSupport( jQuery.support )
17+
);
18+
</script>
19+
</body>
20+
</html>

test/unit/support.js

+12
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,18 @@ testIframe(
5454
}
5555
);
5656

57+
testIframe(
58+
"Verify correctness of support tests with bootstrap CSS on the page",
59+
"support/bootstrap.html",
60+
function( assert, jQuery, window, document, bodyStyle, support ) {
61+
assert.expect( 2 );
62+
assert.strictEqual( bodyStyle.boxSizing, "border-box",
63+
"border-box applied on body by Bootstrap" );
64+
assert.deepEqual( jQuery.extend( {}, support ), computedSupport,
65+
"Same support properties" );
66+
}
67+
);
68+
5769
( function() {
5870
var expected, browserKey,
5971
userAgent = window.navigator.userAgent,

0 commit comments

Comments
 (0)