@@ -1234,8 +1234,6 @@ QUnit.test( "Do not append px (trac-9548, trac-12990, gh-2792, gh-5179)", functi
1234
1234
// 'WebkitAspectRatio' which interferes with this test.
1235
1235
if ( $div . css ( "-webkit-aspect-ratio" ) !== "auto" ) {
1236
1236
$div . css ( "aspect-ratio" , 2 ) ;
1237
- console . log ( "getComputedStyle( $div[ 0 ] ).aspectRatio" ,
1238
- getComputedStyle ( $div [ 0 ] ) . aspectRatio ) ;
1239
1237
window . div = $div [ 0 ] ;
1240
1238
if ( $div . css ( "aspect-ratio" ) !== undefined ) {
1241
1239
assert . equal ( $div . css ( "aspect-ratio" ) , "2 / 1" ,
@@ -1248,11 +1246,15 @@ QUnit.test( "Do not append px (trac-9548, trac-12990, gh-2792, gh-5179)", functi
1248
1246
}
1249
1247
1250
1248
$div . css ( "border-image-slice" , 2 ) ;
1251
- if ( $div . css ( "border-image-slice" ) !== undefined ) {
1249
+ if ( $div . css ( "border-image-slice" ) !== undefined &&
1250
+
1251
+ // Support: Firefox <=48-54 only
1252
+ // Older Firefox serializes 'border-image-slice' differently.
1253
+ ! / f i r e f o x \/ 4 8 \. / i. test ( navigator . userAgent ) ) {
1252
1254
assert . equal ( $div . css ( "border-image-slice" ) , "2" ,
1253
1255
"Does not append px to 'border-image-slice'" ) ;
1254
1256
} else {
1255
- assert . ok ( true , "No support for 'border-image-slice' CSS property" ) ;
1257
+ assert . ok ( true , "No or broken support for 'border-image-slice' CSS property" ) ;
1256
1258
}
1257
1259
1258
1260
$div . css ( "column-count" , 1 ) ;
0 commit comments