Skip to content

Commit 3eed282

Browse files
authored
CSS: Add missing jQuery.cssNumber entries
New entries cover `aspect-ratio`, `scale`, and a few others. Also, remove quotes around `cssNumber` keys A few properties have been taken from React: https://github.com/facebook/react/blob/afea1d0c536e0336735b0ea5c74f635527b65785/packages/react-dom-bindings/src/shared/CSSProperty.js\#L8-L58 Fixes gh-5179 Closes gh-5233
1 parent 3936cf3 commit 3eed282

File tree

2 files changed

+112
-33
lines changed

2 files changed

+112
-33
lines changed

src/css.js

+29-20
Original file line numberDiff line numberDiff line change
@@ -211,26 +211,35 @@ jQuery.extend( {
211211

212212
// Don't automatically add "px" to these possibly-unitless properties
213213
cssNumber: {
214-
"animationIterationCount": true,
215-
"columnCount": true,
216-
"fillOpacity": true,
217-
"flexGrow": true,
218-
"flexShrink": true,
219-
"fontWeight": true,
220-
"gridArea": true,
221-
"gridColumn": true,
222-
"gridColumnEnd": true,
223-
"gridColumnStart": true,
224-
"gridRow": true,
225-
"gridRowEnd": true,
226-
"gridRowStart": true,
227-
"lineHeight": true,
228-
"opacity": true,
229-
"order": true,
230-
"orphans": true,
231-
"widows": true,
232-
"zIndex": true,
233-
"zoom": true
214+
animationIterationCount: true,
215+
aspectRatio: true,
216+
borderImageSlice: true,
217+
columnCount: true,
218+
flexGrow: true,
219+
flexShrink: true,
220+
fontWeight: true,
221+
gridArea: true,
222+
gridColumn: true,
223+
gridColumnEnd: true,
224+
gridColumnStart: true,
225+
gridRow: true,
226+
gridRowEnd: true,
227+
gridRowStart: true,
228+
lineHeight: true,
229+
opacity: true,
230+
order: true,
231+
orphans: true,
232+
scale: true,
233+
widows: true,
234+
zIndex: true,
235+
zoom: true,
236+
237+
// SVG-related
238+
fillOpacity: true,
239+
floodOpacity: true,
240+
stopOpacity: true,
241+
strokeMiterlimit: true,
242+
strokeOpacity: true
234243
},
235244

236245
// Add in properties whose names you wish to fix before

test/unit/css.js

+83-13
Original file line numberDiff line numberDiff line change
@@ -1202,30 +1202,100 @@ if ( includesModule( "offset" ) ) {
12021202
} );
12031203
}
12041204

1205-
QUnit.test( "Do not append px (trac-9548, trac-12990, gh-2792)", function( assert ) {
1206-
assert.expect( 3 );
1205+
QUnit.test( "Do not append px (trac-9548, trac-12990, gh-2792, gh-5179)", function( assert ) {
1206+
assert.expect( 10 );
12071207

1208-
var $div = jQuery( "<div>" ).appendTo( "#qunit-fixture" );
1208+
var $div = jQuery( "<div>" ),
1209+
$svg = jQuery(
1210+
"<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'>" +
1211+
" <path d=\" M 2,2 h 2\"></path>" +
1212+
"</svg>"
1213+
),
1214+
$svgPath = $svg.find( "path" );
12091215

1210-
$div.css( "fill-opacity", 1 );
1216+
jQuery( "#qunit-fixture" )
1217+
.append( $div )
1218+
.append( $svg );
12111219

1212-
assert.equal( $div.css( "fill-opacity" ), 1, "Do not append px to 'fill-opacity'" );
1220+
// HTML
1221+
1222+
$div.css( "animation-iteration-count", 2 );
1223+
if ( $div.css( "animation-iteration-count" ) !== undefined ) {
1224+
// if $div.css( "animation-iteration-count" ) returns "1",
1225+
// it actually returns the default value of animation-iteration-count
1226+
assert.equal( $div.css( "animation-iteration-count" ), "2",
1227+
"Does not append px to 'animation-iteration-count'" );
1228+
} else {
1229+
assert.ok( true, "No support for 'animation-iteration-count' CSS property" );
1230+
}
1231+
1232+
// Support: Safari <15 only, iOS <15 only
1233+
// Older Safari doesn't support 'aspect-ratio' but it supports a non-standard
1234+
// 'WebkitAspectRatio' which interferes with this test.
1235+
if ( $div.css( "-webkit-aspect-ratio" ) !== "auto" ) {
1236+
$div.css( "aspect-ratio", 2 );
1237+
console.log( "getComputedStyle( $div[ 0 ] ).aspectRatio",
1238+
getComputedStyle( $div[ 0 ] ).aspectRatio );
1239+
window.div = $div[ 0 ];
1240+
if ( $div.css( "aspect-ratio" ) !== undefined ) {
1241+
assert.equal( $div.css( "aspect-ratio" ), "2 / 1",
1242+
"Does not append px to 'aspect-ratio'" );
1243+
} else {
1244+
assert.ok( true, "No support for 'aspect-ratio' CSS property" );
1245+
}
1246+
} else {
1247+
assert.ok( true, "No support for 'aspect-ratio' CSS property (WebKit)" );
1248+
}
1249+
1250+
$div.css( "border-image-slice", 2 );
1251+
if ( $div.css( "border-image-slice" ) !== undefined ) {
1252+
assert.equal( $div.css( "border-image-slice" ), "2",
1253+
"Does not append px to 'border-image-slice'" );
1254+
} else {
1255+
assert.ok( true, "No support for 'border-image-slice' CSS property" );
1256+
}
12131257

12141258
$div.css( "column-count", 1 );
12151259
if ( $div.css( "column-count" ) !== undefined ) {
1216-
assert.equal( $div.css( "column-count" ), 1, "Do not append px to 'column-count'" );
1260+
assert.equal( $div.css( "column-count" ), "1",
1261+
"Does not append px to 'column-count'" );
12171262
} else {
1218-
assert.ok( true, "No support for column-count CSS property" );
1263+
assert.ok( true, "No support for 'column-count' CSS property" );
12191264
}
12201265

1221-
$div.css( "animation-iteration-count", 2 );
1222-
if ( $div.css( "animation-iteration-count" ) !== undefined ) {
1223-
// if $div.css( "animation-iteration-count" ) return "1",
1224-
// it actually return the default value of animation-iteration-count
1225-
assert.equal( $div.css( "animation-iteration-count" ), 2, "Do not append px to 'animation-iteration-count'" );
1266+
$div.css( "scale", 2 );
1267+
if ( $div.css( "scale" ) !== undefined ) {
1268+
assert.equal( $div.css( "scale" ), "2", "Does not append px to 'scale'" );
1269+
} else {
1270+
assert.ok( true, "No support for 'scale' CSS property" );
1271+
}
1272+
1273+
// SVG
1274+
1275+
$svgPath.css( "fill-opacity", 0.5 );
1276+
assert.equal( $svgPath.css( "fill-opacity" ), "0.5",
1277+
"Does not append px to 'fill-opacity'" );
1278+
1279+
$svgPath.css( "flood-opacity", 0.5 );
1280+
if ( $svgPath.css( "flood-opacity" ) !== undefined ) {
1281+
assert.equal( $svgPath.css( "flood-opacity" ), "0.5",
1282+
"Does not append px to 'flood-opacity'" );
12261283
} else {
1227-
assert.ok( true, "No support for animation-iteration-count CSS property" );
1284+
assert.ok( true, "No support for 'flood-opacity' CSS property" );
12281285
}
1286+
1287+
$svgPath.css( "stop-opacity", 0.5 );
1288+
assert.equal( $svgPath.css( "stop-opacity" ), "0.5",
1289+
"Does not append px to 'stop-opacity'" );
1290+
1291+
$svgPath.css( "stroke-miterlimit", 1.5 );
1292+
assert.equal( $svgPath.css( "stroke-miterlimit" ), "1.5",
1293+
"Does not append px to 'stroke-miterlimit'" );
1294+
1295+
$svgPath.css( "stroke-opacity", 0.5 );
1296+
assert.equal( $svgPath.css( "stroke-opacity" ), "0.5",
1297+
"Does not append px to 'stroke-opacity'" );
1298+
12291299
} );
12301300

12311301

0 commit comments

Comments
 (0)