diff --git a/test/unit/dimensions.js b/test/unit/dimensions.js
index 3f690cecf..23a58523c 100644
--- a/test/unit/dimensions.js
+++ b/test/unit/dimensions.js
@@ -757,13 +757,16 @@ QUnit.test( "outerWidth/Height for table cells and textarea with border-box in I
$firstTh = jQuery( "
| " ),
$secondTh = jQuery( " | " ),
$thirdTh = jQuery( " | " ),
- // Support Firefox 63, Edge 16-17, Android 8, iOS 7-11
+
+ // Support: Firefox 63, Edge 16-17, Android 8, iOS 7-11
// These browsers completely ignore the border-box and height settings
// The computed height is instead just line-height + border
// Either way, what we're doing in css.js is correct
$td = jQuery( "text | " ),
+
$tbody = jQuery( "" ).appendTo( $table ),
$textarea = jQuery( "" ).appendTo( "#qunit-fixture" );
+
jQuery( "
" ).appendTo( $thead ).append( $firstTh );
jQuery( "
" ).appendTo( $thead ).append( $secondTh );
jQuery( "
" ).appendTo( $thead ).append( $thirdTh );
@@ -772,7 +775,18 @@ QUnit.test( "outerWidth/Height for table cells and textarea with border-box in I
assert.strictEqual( $firstTh.outerWidth(), 200, "First th has outerWidth 200." );
assert.strictEqual( $secondTh.outerWidth(), 200, "Second th has outerWidth 200." );
assert.strictEqual( $thirdTh.outerWidth(), 200, "Third th has outerWidth 200." );
- assert.strictEqual( $td.outerHeight(), 30, "outerHeight of td with border-box should include padding." );
+
+ // Support: Android 4.0-4.3 only
+ // Android Browser disregards td's box-sizing, treating it like it was content-box.
+ // Unlike in IE, offsetHeight shares the same issue so there's no easy way to workaround
+ // the issue without incurring high size penalty. Let's at least check we get the size
+ // as the browser sees it.
+ if ( /android 4\.[0-3]/i.test( navigator.userAgent ) ) {
+ assert.ok( [ 30, 32 ].indexOf( $td.outerHeight() ) > -1,
+ "outerHeight of td with border-box should include padding." );
+ } else {
+ assert.strictEqual( $td.outerHeight(), 30, "outerHeight of td with border-box should include padding." );
+ }
assert.strictEqual( $textarea.outerHeight(), 6, "outerHeight of textarea with border-box should include padding and border." );
} );