Skip to content

Commit 09f2543

Browse files
authored
Support: ensure display is set to block for the support div
* Support: ensure display is set to block for the support div - Fixes an issue with the support test in iframes in Android 8 Chrome 86+, where display: inline resulted in unexpected height values. Close gh-4845 Fixes gh-4832
1 parent 8ae477a commit 09f2543

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/css/support.js

+9
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,15 @@ support.reliableTrDimensions = function() {
3333
tr.style.height = "1px";
3434
div.style.height = "9px";
3535

36+
// Support: Android Chrome 86+
37+
// In our bodyBackground.html iframe,
38+
// display for all div elements is set to "inline",
39+
// which causes a problem only in Android Chrome, but
40+
// not consistently across all devices.
41+
// Ensuring the div is display: block
42+
// gets around this issue.
43+
div.style.display = "block";
44+
3645
documentElement
3746
.appendChild( table )
3847
.appendChild( tr )

0 commit comments

Comments
 (0)