diff --git a/src/css/support.js b/src/css/support.js index 3ed31bb9b5..3a9d25c734 100644 --- a/src/css/support.js +++ b/src/css/support.js @@ -122,6 +122,14 @@ define( [ tr.style.height = "1px"; trChild.style.height = "9px"; + // Support: Android 8 Chrome 86+ + // In our bodyBackground.html iframe, + // display for all div elements is set to "inline", + // which causes a problem only in Android 8 Chrome 86. + // Ensuring the div is display: block + // gets around this issue. + trChild.style.display = "block"; + documentElement .appendChild( table ) .appendChild( tr )